/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(135deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%);
    color: #fff;
    min-height: 100vh;
    line-height: 1.6;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff00ff, #b026ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    color: white;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 4px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(236, 72, 153, 0.2);
    color: #ec4899;
}

.nav-actions {
    display: flex;
    gap: 10px;
}

.btn-login {
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    color: #9ca3af;
    transition: all 0.3s;
}

.btn-login:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-join {
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #db2777, #ec4899);
    color: white;
    transition: all 0.3s;
}

.btn-join:hover {
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: rgba(236, 72, 153, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.glow-2 {
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 100px;
    color: #ec4899;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, #ff00ff, #b026ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    letter-spacing: 4px;
    color: #ec4899;
    margin-bottom: 16px;
}

.hero-desc {
    color: #9ca3af;
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #db2777, #ec4899);
    color: white;
    font-weight: 600;
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    border-radius: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 12px;
    color: #9ca3af;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.2));
}

.hero-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.hero-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff00ff, #b026ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin-bottom: 24px;
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(255, 0, 255, 0.3); }
    to { box-shadow: 0 0 40px rgba(255, 0, 255, 0.6), 0 0 60px rgba(176, 38, 255, 0.3); }
}

.hero-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 8px;
}

.hero-card p {
    color: #9ca3af;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-header.center {
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-header p {
    color: #9ca3af;
}

.view-all {
    color: #ec4899;
    font-weight: 500;
    transition: color 0.3s;
}

.view-all:hover {
    color: #f472b6;
}

/* ===== MODELS GRID ===== */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.model-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.model-card:hover {
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.1);
    transform: translateY(-4px);
}

.model-image {
    position: relative;
    aspect-ratio: 3/4;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px;
}

.badge-new,
.badge-popular,
.badge-vip {
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.badge-new { background: rgba(34, 197, 94, 0.8); }
.badge-popular { background: rgba(236, 72, 153, 0.8); }
.badge-vip { background: rgba(234, 179, 8, 0.8); }

.fav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.fav-btn:hover {
    background: rgba(236, 72, 153, 0.5);
}

.model-info {
    padding: 16px;
}

.model-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.model-info > p {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.model-stats {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.model-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.model-tags span {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 11px;
    color: #d1d5db;
}

/* ===== VIP BANNER ===== */
.vip-banner {
    padding: 40px 0;
}

.vip-banner-content {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 100px;
    color: #eab308;
    font-size: 14px;
    margin-bottom: 16px;
}

.vip-banner h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    margin-bottom: 8px;
}

.vip-banner p {
    color: #9ca3af;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #eab308, #f59e0b);
    color: white;
    font-weight: 600;
    border-radius: 16px;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
}

.btn-gold:hover {
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.5);
    transform: translateY(-2px);
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: #9ca3af;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-desc {
    color: #9ca3af;
    font-size: 14px;
    margin-top: 16px;
    max-width: 300px;
}

.footer h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer a {
    display: block;
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

.footer p {
    color: #9ca3af;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-desc {
        margin: 0 auto 32px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visual {
        display: none;
    }
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 36px;
    }
    .nav-links {
        display: none;
    }
    .models-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .vip-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ec4899, #8b5cf6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f472b6, #a78bfa);
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(236, 72, 153, 0.3);
    color: white;
}