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

body {
    font-family: 'Oswald', sans-serif;
    background-color: #0F0529;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: white;
    overflow-x: hidden;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 5, 41, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(158, 114, 195, 0.2);
}

nav {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #9E72C3, #924DBF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
}

nav ul li a {
    color: rgba(158, 114, 195, 0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

nav ul li a:hover {
    background: rgba(158, 114, 195, 0.12);
    color: #9E72C3;
}

main {
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero {
    text-align: center;
    padding: 56px 40px 48px;
    background: rgba(74, 37, 116, 0.12);
    border: 1px solid rgba(158, 114, 195, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 140px;
    background: radial-gradient(ellipse, rgba(146,77,191,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: 58px;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #c9a0f0 0%, #924DBF 60%, #7338A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #924DBF, #9E72C3);
    margin: 0 auto 18px;
    border-radius: 2px;
}

.hero p {
    font-size: 16px;
    color: rgba(158, 114, 195, 0.65);
    letter-spacing: 0.5px;
}

.card {
    background: rgba(74, 37, 116, 0.14);
    border: 1px solid rgba(158, 114, 195, 0.18);
    border-radius: 16px;
    padding: 28px 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.2s, background 0.2s;
}

.card:hover {
    border-color: rgba(158, 114, 195, 0.35);
    background: rgba(74, 37, 116, 0.22);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9E72C3, #924DBF);
    flex-shrink: 0;
}

.card h2 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9E72C3;
}

.card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    padding-left: 18px;
}

.quote-mark {
    font-size: 48px;
    line-height: 0.8;
    color: rgba(146, 77, 191, 0.25);
    font-family: Georgia, serif;
    display: block;
    margin-bottom: 8px;
    padding-left: 18px;
}

footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 24px;
    border-top: 1px solid rgba(158, 114, 195, 0.1);
    color: rgba(158, 114, 195, 0.35);
    font-size: 13px;
    letter-spacing: 0.3px;
    margin-top: auto;
}

a {
    color: #924DBF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}

.social-card {
    background: rgba(74, 37, 116, 0.14);
    border: 1px solid rgba(158, 114, 195, 0.18);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.social-card:hover {
    background: rgba(74, 37, 116, 0.26);
    border-color: rgba(158, 114, 195, 0.35);
    transform: translateY(-3px);
    text-decoration: none;
}

.social-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    border-radius: 8px;
}

.social-card h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    color: #9E72C3;
}

.social-card p {
    margin: 0;
    font-size: 13px;
    color: rgba(158, 114, 195, 0.6);
    padding-left: 0;
}

hr {
    border: none;
    border-top: 1px solid rgba(74, 37, 116, 0.4);
    margin: 6px 0;
}

img {
    border-radius: 8px;
    width: 100%;
}

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }

    .nav-brand {
        font-size: 16px;
    }

    nav ul li a {
        font-size: 12px;
        padding: 6px 10px;
    }

    .hero {
        padding: 40px 24px 36px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .card {
        padding: 22px 20px;
    }

    .socials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gif-side {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}
