:root {
    --bg: #050507;
    --bg-card: rgba(15, 15, 20, 0.8);
    --bg-card-solid: #0f0f14;
    --purple: #9333ea;
    --purple-light: #a855f7;
    --purple-dark: #7c22c9;
    --purple-glow: rgba(147, 51, 234, 0.12);
    --purple-glow-strong: rgba(147, 51, 234, 0.35);
    --gold: #d4a842;
    --gold-light: #e4be62;
    --gold-dim: rgba(212, 168, 66, 0.15);
    --white: #ececf0;
    --muted: #7a7a8a;
    --muted-dark: #44444f;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(147, 51, 234, 0.4);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --font: 'Inter', sans-serif;
    --discord: #5865F2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.text-gradient {
    background: linear-gradient(135deg, var(--purple-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* PARTICLES CANVAS */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background .4s, backdrop-filter .4s;
}
.nav.scrolled {
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.nav-logo {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    box-shadow: 0 0 12px var(--purple-glow);
    flex-shrink: 0;
    object-fit: contain;
}
.nav-title { color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--muted);
    transition: color .25s;
    position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--gold));
    border-radius: 1px;
}
.nav-discord {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--discord);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    transition: transform .2s, box-shadow .2s;
}
.nav-discord:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}
.nav-discord::after { display: none !important; }

/* NAV AUTH */
.nav-auth { display: flex; align-items: center; }
.nav-user {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--purple);
}
.nav-username {
    font-size: .85rem;
    font-weight: 600;
    color: var(--white);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nav-user-wrap { position: relative; }
.nav-user { cursor: pointer; user-select: none; }
.nav-chevron { color: var(--muted); transition: transform .2s; margin-left: 2px; }
.nav-dropdown.open ~ .nav-user .nav-chevron,
.nav-user-wrap .nav-dropdown.open + .nav-user .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: 10px;
    min-width: 180px;
    padding: 8px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .2s, transform .2s;
    z-index: 110;
}
.nav-dropdown.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown-email {
    padding: 8px 14px;
    font-size: .75rem;
    color: var(--muted-dark);
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nav-dropdown-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 14px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: .85rem;
    font-family: var(--font);
    cursor: pointer;
    transition: color .2s, background .2s;
}
.nav-dropdown-item:hover { color: #ef4444; background: rgba(239, 68, 68, 0.06); }
.nav-admin-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--gold) !important;
    margin-right: 16px;
    transition: opacity .2s;
}
.nav-admin-link:hover { opacity: .8; }
.nav-admin-link::after { display: none !important; }
.btn-login {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--discord);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: transform .2s, box-shadow .2s;
}
.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.burger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .2;
    filter: blur(2px);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(147, 51, 234, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 168, 66, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, rgba(5,5,7,0.3) 0%, rgba(5,5,7,0.7) 50%, var(--bg) 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}
.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(147, 51, 234, 0.08);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}
.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(212, 168, 66, 0.05);
    bottom: 10%;
    right: -5%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 60px;
    max-width: 750px;
}

.hero-logo-wrap {
    position: relative;
    width: 170px;
    height: 170px;
    margin: 0 auto 32px;
}
.hero-logo-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: conic-gradient(from 0deg, var(--purple), var(--gold), var(--purple)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spin 6s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.hero-logo {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 60px var(--purple-glow-strong), 0 0 120px rgba(147, 51, 234, 0.1);
}

.hero-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid var(--gold-dim);
    border-radius: 20px;
    background: rgba(212, 168, 66, 0.05);
}
.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted-dark);
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--muted-dark), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: .3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 10px;
    font-size: .93rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    border: none;
    font-family: var(--font);
    position: relative;
}

.btn-glow {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.2);
}
.btn-glow:hover {
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.4), 0 4px 20px rgba(147, 51, 234, 0.3);
    transform: translateY(-2px);
}

.btn-glass {
    background: var(--glass);
    color: var(--white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
}
.btn-primary:hover {
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.35);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--glass-border);
}
.btn-outline:hover {
    border-color: var(--border-hover);
    background: var(--purple-glow);
}

.btn-discord {
    background: var(--discord);
    color: #fff;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.2);
}
.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(88, 101, 242, 0.4);
}
.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--purple-light);
    margin-bottom: 12px;
}
.section-header h2 { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.3px; }
.header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--gold));
    margin: 16px auto 0;
    border-radius: 2px;
}

/* FEATURED WORK */
.featured-work {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.featured-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}
.featured-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.12), 0 0 0 1px var(--border-hover);
}
.featured-img { height: 240px; overflow: hidden; }
.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
}
.featured-card:hover .featured-img img { transform: scale(1.08); }
.featured-info { padding: 22px; }
.featured-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.featured-info p { color: var(--muted); font-size: .85rem; }
.featured-cta { text-align: center; margin-top: 44px; }
.empty-msg { text-align: center; color: var(--muted); grid-column: 1 / -1; padding: 60px 0; font-size: .95rem; }

/* STATS */
.stats-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-card {
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: border-color .3s;
}
.stat-card:hover { border-color: var(--border-hover); }
.stat-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .3s;
}
.stat-card:hover .stat-glow { opacity: 1; }
.stat-num {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
}
.stat-label {
    display: block;
    font-size: .82rem;
    color: var(--muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA */
.cta-section { padding: 80px 0 100px; position: relative; z-index: 1; }
.cta-box {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 70px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.cta-box h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-box p { color: var(--muted); margin-bottom: 32px; max-width: 450px; margin-left: auto; margin-right: auto; }

/* FOOTER */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
    position: relative;
    z-index: 1;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
}
.footer-logo { width: 32px; height: 32px; border-radius: 6px; }
.footer-col h4 {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted-dark);
    margin-bottom: 14px;
}
.footer-col a {
    display: block;
    font-size: .88rem;
    color: var(--muted);
    margin-bottom: 8px;
    transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}
.footer-bottom p { font-size: .75rem; color: var(--muted-dark); }

/* PAGE HEADER */
.page-header {
    padding: 130px 0 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.page-header h1 { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.3px; }
.page-header p { color: var(--muted); margin-top: 10px; }

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}
.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.12);
}
.product-img { height: 200px; overflow: hidden; }
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-body { padding: 22px; }
.product-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.product-body p { color: var(--muted); font-size: .85rem; margin-bottom: 14px; }
.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}
.product-cat {
    display: inline-block;
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple-light);
    background: var(--purple-glow);
    padding: 5px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 1px solid rgba(147, 51, 234, 0.15);
}

/* FILTERS */
.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 8px 22px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--glass);
    color: var(--muted);
    font-size: .83rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font);
    transition: all .25s;
    backdrop-filter: blur(10px);
}
.filter-btn:hover, .filter-btn.active {
    border-color: var(--border-hover);
    color: var(--white);
    background: var(--purple-glow);
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}
.gallery-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(147, 51, 234, 0.1);
}
.gallery-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform .5s;
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card .gallery-info { padding: 14px; }
.gallery-card .gallery-info h3 { font-size: .95rem; font-weight: 600; }
.gallery-card .gallery-info p { font-size: .8rem; color: var(--muted); }

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,.92);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: transform .2s;
}
.lightbox-close:hover { transform: rotate(90deg); }

/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: border-color .3s;
    position: relative;
}
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    color: var(--purple-glow);
    font-family: Georgia, serif;
    line-height: 1;
}
.review-card:hover { border-color: var(--border-hover); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.review-text { color: var(--muted); font-size: .9rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-weight: 600; font-size: .9rem; }
.review-date { font-size: .75rem; color: var(--muted-dark); margin-top: 2px; }

/* ABOUT */
.about-content { max-width: 700px; margin: 0 auto; padding: 60px 24px; position: relative; z-index: 1; }
.about-content p { color: var(--muted); margin-bottom: 20px; line-height: 1.8; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: border-color .3s;
}
.team-card:hover { border-color: var(--border-hover); }
.team-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 14px;
    border: 2px solid var(--purple);
}
.team-card h3 { font-size: 1rem; font-weight: 700; }
.team-card p { font-size: .8rem; color: var(--muted); }

/* LEGAL */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    position: relative;
    z-index: 1;
}
.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 36px 0 12px;
    color: var(--white);
}
.legal-content p, .legal-content li {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 10px;
}
.legal-content ul { padding-left: 20px; }

/* ADMIN */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.admin-login-box {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}
.admin-login-box h2 { margin-bottom: 20px; text-align: center; }
.admin-panel { padding: 80px 24px 40px; max-width: 1000px; margin: 0 auto; }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.admin-tab {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font);
    transition: all .2s;
}
.admin-tab.active {
    border-color: var(--border-hover);
    color: var(--white);
    background: var(--purple-glow);
}
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.admin-table th, .admin-table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    font-size: .85rem;
}
.admin-table th { color: var(--muted); font-weight: 600; text-transform: uppercase; font-size: .7rem; letter-spacing: 1px; }

/* FORMS */
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 6px;
}
.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 11px 14px;
    background: rgba(5, 5, 7, 0.6);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--white);
    font-size: .9rem;
    font-family: var(--font);
    transition: border-color .25s, box-shadow .25s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { cursor: pointer; }

/* SCROLL REVEAL */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(0.4, 0, 0.2, 1), transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-card-solid);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 20px;
        transition: right .3s;
        border-left: 1px solid var(--border);
    }
    .nav-links.open { right: 0; }
    .burger { display: flex; }
    .hero h1 { font-size: 2.2rem; }
    .hero-logo-wrap { width: 130px; height: 130px; }
    .hero-logo { width: 130px; height: 130px; }
    .hero-glow { display: none; }
    .featured-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 16px; }
    .product-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
    .cta-box { padding: 50px 24px; }
    .cta-box h2 { font-size: 1.5rem; }
    .section-header h2 { font-size: 1.8rem; }
    .scroll-hint { display: none; }
    #particles { display: none; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .hero h1 { font-size: 1.8rem; }
    .yt-grid { grid-template-columns: 1fr; }
}

.yt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.yt-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    transition: border-color 0.3s, transform 0.3s;
}
.yt-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.yt-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.yt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.yt-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s;
}
.yt-card:hover .yt-play { opacity: 1; }
.yt-info {
    padding: 16px;
}
.yt-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.yt-info p {
    font-size: 0.8rem;
    color: var(--muted);
}
@media (max-width: 768px) {
    .yt-grid { grid-template-columns: 1fr; }
}