/* ===== CSS Reset & Variables ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #0a0a0f;
    --color-bg-secondary: #12121a;
    --color-bg-card: #1a1a25;
    --color-primary: #8b5cf6;
    --color-primary-light: #a78bfa;
    --color-primary-dark: #6d28d9;
    --color-accent: #f59e0b;
    --color-text: #ffffff;
    --color-text-muted: #9ca3af;
    --color-text-dim: #6b7280;
    --color-border: #2d2d3a;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Utility Classes ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-light);
}

.btn-support {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.5);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: var(--color-text);
    transition: color var(--transition);
}

.nav-logo:hover {
    color: var(--color-primary-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav-menu a:hover {
    color: var(--color-text);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.3) 50%, transparent 70%),
        url('hero.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero-bg {
        background:
            linear-gradient(to bottom, rgba(10, 10, 15, 0.8) 0%, rgba(10, 10, 15, 0.6) 100%),
            url('hero.png');
        background-size: cover;
        background-position: center;
    }
}

.hero-content {
    text-align: left;
    z-index: 1;
    padding: 0 1.5rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    letter-spacing: 0.1em;
    line-height: 0.9;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary-light) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin: 1.5rem 0 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

@media (max-width: 768px) {
    .hero-cta {
        justify-content: center;
    }
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-dim);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-text-dim);
    border-bottom: 2px solid var(--color-text-dim);
    transform: rotate(45deg);
}

/* ===== About Section ===== */
.about {
    background: var(--color-bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content .lead {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.about-content strong {
    color: var(--color-primary-light);
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary-light);
    letter-spacing: 0.05em;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    transform: rotate(3deg);
    opacity: 0.5;
}

.placeholder-image {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-text-dim);
    letter-spacing: 0.1em;
    border: 1px solid var(--color-border);
}

.profile-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 15px;
}

/* ===== Gallery Section ===== */
.gallery {
    background: var(--color-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 50%;
}

.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-primary);
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* ===== Store Section ===== */
.store {
    background: var(--color-bg-secondary);
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.store-item {
    background: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    text-align: center;
    padding-bottom: 1.5rem;
}

.store-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.store-item-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: #ffffff;
    position: relative;
}

.store-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.store-item-image .img-default {
    position: relative;
    z-index: 1;
}

.store-item-image .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}

.store-item:hover .store-item-image .img-default {
    opacity: 0;
}

.store-item:hover .store-item-image .img-hover {
    opacity: 1;
}

.store-item h4 {
    font-size: 1rem;
    margin: 1rem 1rem 0.5rem;
    color: var(--color-text);
}

.store-price {
    color: var(--color-primary-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.store-cta {
    text-align: center;
    margin-top: 2.5rem;
}

@media (max-width: 968px) {
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .store-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== Story Section ===== */
.story-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.story-block {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.story-block:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.story-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.story-block p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.story-block em {
    color: var(--color-primary-light);
    font-style: italic;
}

/* ===== Schedule Section ===== */
.schedule {
    background: var(--color-bg-secondary);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.schedule-day {
    background: var(--color-bg-card);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.schedule-day.live {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, var(--color-bg-card) 100%);
}

.schedule-day.live:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.schedule-day.off {
    opacity: 0.5;
}

.day-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.schedule-day.live .day-name {
    color: var(--color-primary-light);
}

.day-show {
    display: block;
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.day-time {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text);
    font-weight: 500;
}

.day-status {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.schedule-timezone {
    text-align: center;
    color: var(--color-text-dim);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-day {
        padding: 1rem;
    }
}

/* ===== Philosophy Section ===== */
.philosophy {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.philosophy-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 60px rgba(139, 92, 246, 0.5);
}

.philosophy-lead {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.philosophy-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-text strong {
    color: var(--color-text);
}

.philosophy-signature {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-top: 2rem;
    letter-spacing: 0.1em;
}

/* ===== Connect Section ===== */
.connect {
    background: var(--color-bg-secondary);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: var(--color-bg-card);
    border-radius: 15px;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: currentColor;
}

.social-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.social-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.social-handle {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

/* Social card colors */
.social-card.tiktok:hover { color: #000000; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4); }
.social-card.youtube:hover { color: #ff0000; box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2); }
.social-card.twitch:hover { color: #9146ff; box-shadow: 0 10px 40px rgba(145, 70, 255, 0.2); }
.social-card.instagram:hover { color: #e4405f; box-shadow: 0 10px 40px rgba(228, 64, 95, 0.2); }
.social-card.facebook:hover { color: #1877f2; box-shadow: 0 10px 40px rgba(24, 119, 242, 0.2); }
.social-card.twitter:hover { color: #ffffff; box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1); }
.social-card.discord:hover { color: #5865f2; box-shadow: 0 10px 40px rgba(88, 101, 242, 0.2); }
.social-card.kick:hover { color: #53fc18; box-shadow: 0 10px 40px rgba(83, 252, 24, 0.2); }

.support-section {
    text-align: center;
    padding: 3rem;
    background: var(--color-bg-card);
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.support-section h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.support-section p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== About Page ===== */
.about-page-hero {
    padding: 10rem 0 4rem;
    background: var(--color-bg-secondary);
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--color-text-muted);
    font-size: 1.2rem;
}

.about-page-content {
    padding: 4rem 0;
}

.about-full-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.about-full-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-full-intro h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.intro-meta {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.intro-tagline {
    color: var(--color-primary-light);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-full-intro blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-text);
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
    margin: 0;
}

.about-sections {
    display: grid;
    gap: 3rem;
}

.about-section h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--color-primary-light);
}

.about-section p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-section strong {
    color: var(--color-text);
}

.about-section em {
    color: var(--color-primary-light);
}

.about-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .about-full-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-full-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .about-full-intro blockquote {
        border-left: none;
        border-top: 4px solid var(--color-primary);
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .about-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Footer ===== */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--color-primary-light);
    margin-bottom: 1rem;
}

.footer-copy {
    color: var(--color-text-dim);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-rep {
    color: var(--color-text-dim);
    font-size: 0.8rem;
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .image-frame {
        max-width: 300px;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .section {
        padding: 4rem 0;
    }

    .stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat {
        flex: 1 1 calc(50% - 1rem);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-card {
        flex-direction: row;
        gap: 1rem;
        padding: 1.5rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0;
    }

    .social-card .social-name,
    .social-card .social-handle {
        text-align: left;
    }

    .support-section {
        padding: 2rem 1.5rem;
    }
}
