* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #0d1117;
    color: #e6edf3;
    line-height: 1.6;
    overflow-x: hidden;
}

.stars {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(2px 2px at 20px 30px, #eee, transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
                radial-gradient(1px 1px at 90px 40px, #fff, transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
                radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
    background-size: 200px 100px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

header {
    text-align: center;
    padding: 60px 20px 30px;
    position: relative;
    z-index: 1;
}

header h1 {
    font-size: 4rem;
    background: linear-gradient(135deg, #1793d1, #00a6ff, #1793d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    letter-spacing: 2px;
}

.subtitle {
    color: #8b949e;
    font-size: 1.2rem;
    margin-top: 10px;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.hero .ascii {
    color: #1793d1;
    font-size: 0.8rem;
    line-height: 1.2;
    font-family: monospace;
    background: rgba(23, 147, 209, 0.05);
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    border: 1px solid rgba(23, 147, 209, 0.2);
}

.hero h2 {
    margin-top: 30px;
    font-size: 2rem;
    color: #c9d1d9;
}

.glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(23,147,209,0.15), transparent 70%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #58a6ff;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.card:hover {
    border-color: #58a6ff;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(23, 147, 209, 0.15);
}

.card .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #c9d1d9;
}

.card p {
    color: #8b949e;
    font-size: 0.95rem;
}

.mythbusters .myth {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid #30363d;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    transition: border 0.3s;
}

.myth:hover {
    border-color: #58a6ff;
}

.myth-q {
    font-weight: bold;
    color: #f0883e;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.myth-a {
    color: #8b949e;
}

.myth-a strong {
    color: #58a6ff;
}

.comparison .table-wrap {
    overflow-x: auto;
}

.comparison table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(22, 27, 34, 0.6);
    border-radius: 12px;
    overflow: hidden;
}

.comparison th, .comparison td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #30363d;
}

.comparison th {
    background: #161b22;
    color: #58a6ff;
    font-size: 1.1rem;
}

.comparison td.win {
    color: #3fb950;
    font-weight: bold;
}

.comparison td.lose {
    color: #f85149;
}

.btw {
    text-align: center;
    padding: 40px 20px;
}

.btw h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #1793d1, #3fb950);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.btw .meme {
    color: #8b949e;
    font-style: italic;
}

footer {
    text-align: center;
    padding: 30px;
    color: #484f4f9;
    border-top: 1px solid #30363d;
    position: relative;
    z-index: 1;
}

@media (max-width: 600px) {
    header h1 { font-size: 2.5rem; }
    .hero .ascii { font-size: 0.5rem; }
    section h2 { font-size: 1.5rem; }
}