/* ============================
   VARIABLES & RESET
   ============================ */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --accent: #ff3c41;
    --accent-hover: #ff5256;
    --gradient: linear-gradient(135deg, #ff3c41 0%, #ff6b6e 100%);
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 60px rgba(255, 60, 65, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================
   NAVIGATION
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.625rem 1.5rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 60, 65, 0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 60, 65, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 110, 0.1) 0%, transparent 50%),
        var(--bg-primary);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(10,10,10,0.3) 0%, 
        rgba(10,10,10,0.7) 50%,
        rgba(10,10,10,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
    padding-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    background: var(--border);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ============================
   SECTIONS
   ============================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 60, 65, 0.1);
    border: 1px solid rgba(255, 60, 65, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================
   FEATURES SECTION
   ============================ */
.features-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 60, 65, 0.3);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 60, 65, 0.1);
    border-radius: 16px;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================
   PRODUCTS SECTION
   ============================ */
.products-section {
    padding: 8rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 60, 65, 0.3);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.product-badge.premium {
    background: var(--gradient);
    color: white;
}

.product-image {
    aspect-ratio: 1 / 1;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}

.product-img-placeholder {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.product-card:hover .product-img-placeholder {
    transform: scale(1.05);
    color: var(--accent);
}

.product-info {
    padding: 2rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.product-desc {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.product-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
}

.btn-product {
    padding: 0.75rem 1.75rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-product:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 60, 65, 0.4);
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.about-stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-placeholder {
    color: var(--text-secondary);
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact-section {
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    padding: 3rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 60, 65, 0.3);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.contact-icon.discord {
    background: rgba(88, 101, 242, 0.1);
    color: #5865F2;
}

.contact-icon.email {
    background: rgba(255, 60, 65, 0.1);
    color: var(--accent);
}

.contact-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: var(--text-secondary);
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-secondary);
}

/* ============================
   MODAL
   ============================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 90vh;
    max-height: 700px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    animation: slideUp 0.4s ease;
    box-shadow: var(--shadow);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 60, 65, 0.2);
    border-color: var(--accent);
    transform: rotate(90deg);
}

#sellix-iframe {
    width: 100%;
    height: 100%;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
/* ============================
   PRODUCT CARD ENHANCEMENTS
   ============================ */
.product-card.featured {
    border: 2px solid rgba(255, 60, 65, 0.5);
    box-shadow: 0 0 30px rgba(255, 60, 65, 0.2);
}

.price-main {
    font-size: 1.75rem;
    font-weight: 800;
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ============================
   STATUS SECTION
   ============================ */
.status-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.status-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.status-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 213, 115, 0.3);
    box-shadow: var(--shadow);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.status-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.status-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.undetected {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.status-badge.updating {
    background: rgba(255, 159, 67, 0.1);
    color: #ff9f43;
    border: 1px solid rgba(255, 159, 67, 0.3);
}

.status-badge.detected {
    background: rgba(255, 60, 65, 0.1);
    color: var(--accent);
    border: 1px solid rgba(255, 60, 65, 0.3);
}

.status-update {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.status-info {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================
   DISCORD SECTION
   ============================ */
.discord-section {
    padding: 8rem 0;
}

.discord-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: rgba(88, 101, 242, 0.05);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 24px;
}

.discord-icon {
    color: #5865F2;
    margin-bottom: 2rem;
}

.discord-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.discord-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.btn-discord {
    padding: 1rem 2.5rem;
    background: #5865F2;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

/* ============================
   FOOTER DISCLAIMER
   ============================ */
.disclaimer {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-style: italic;
}

/* ============================
   DASHBOARD STYLES
   ============================ */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
    background: var(--bg-primary);
}

/* Sidebar */
.dashboard-sidebar {
    width: 280px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border);
    padding: 2rem 0;
    position: fixed;
    left: 0;
    top: 80px;
    bottom: 0;
    overflow-y: auto;
}

.sidebar-header {
    padding: 0 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 2px solid var(--border);
    color: var(--accent);
}

.user-info {
    text-align: center;
}

.user-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.user-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.sidebar-nav {
    padding: 0 1rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(255, 60, 65, 0.1);
    color: var(--accent);
}

.sidebar-link svg {
    flex-shrink: 0;
}

/* Main Content */
.dashboard-content {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.dashboard-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: var(--text-secondary);
}

/* Stats Cards */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 60, 65, 0.3);
}

.stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 60, 65, 0.1);
    border-radius: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Dashboard Section */
.dashboard-section {
    margin-bottom: 3rem;
}

.section-header-dash {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header-dash h2 {
    font-size: 1.5rem;
}

/* Product License Cards */
.products-list {
    display: grid;
    gap: 1.5rem;
}

.product-license-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.product-license-card:hover {
    border-color: rgba(255, 60, 65, 0.3);
    box-shadow: var(--shadow);
}

.product-license-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.product-license-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 60, 65, 0.1);
    border-radius: 12px;
    color: var(--accent);
}

.product-license-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.license-key {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.license-key code {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.product-license-status {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-license-status.active {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.product-license-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-weight: 600;
    color: var(--text-primary);
}

.status-undetected {
    color: #2ed573;
}

.product-license-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* Quick Links */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.quick-link-card {
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 60, 65, 0.3);
}

.quick-link-card svg {
    color: var(--accent);
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.quick-link-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* License Tabs */
.license-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--text-primary);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

/* License Cards (Orders page) */
.licenses-list {
    display: grid;
    gap: 2rem;
}

.license-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
}

.license-card.expired {
    opacity: 0.6;
}

.license-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border);
}

.license-product {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.license-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 60, 65, 0.1);
    border-radius: 12px;
    color: var(--accent);
}

.license-status-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.license-status-badge.active {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.license-status-badge.expired {
    background: rgba(255, 60, 65, 0.1);
    color: var(--accent);
    border: 1px solid rgba(255, 60, 65, 0.3);
}

.license-card-body {
    padding: 2rem;
}

.license-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-weight: 600;
}

.license-card-footer {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    padding: 10rem 0 6rem;
    background: var(--bg-secondary);
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Story Section */
.story-section {
    padding: 6rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 60, 65, 0.05);
    border: 1px solid rgba(255, 60, 65, 0.2);
    border-radius: 16px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    padding: 2.5rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 60, 65, 0.3);
}

.team-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 60, 65, 0.1);
    border-radius: 50%;
    color: var(--accent);
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Contact Methods */
.contact-methods-section {
    padding: 4rem 0;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-method-card {
    padding: 3rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 60, 65, 0.3);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.contact-method-icon.discord {
    background: rgba(88, 101, 242, 0.1);
    color: #5865F2;
}

.contact-method-icon.email {
    background: rgba(255, 60, 65, 0.1);
    color: var(--accent);
}

.contact-method-icon.ticket {
    background: rgba(255, 159, 67, 0.1);
    color: #ff9f43;
}

.contact-method-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.contact-method-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.contact-method-link {
    display: block;
    color: var(--accent);
    font-weight: 600;
}

/* Contact Form */
.contact-form-section {
    padding: 4rem 0;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 60, 65, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Filter Section */
.filter-section {
    padding: 2rem 0;
    background: var(--bg-secondary);
}

.filter-bar {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-group label {
    font-weight: 600;
    font-size: 0.875rem;
}

.filter-group select {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    cursor: pointer;
}

/* Products Catalog Section */
.products-catalog-section {
    padding: 4rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .dashboard-sidebar.active {
        transform: translateX(0);
    }
    
    .dashboard-content {
        margin-left: 0;
    }
    
    .story-grid,
    .product-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================
   AUTHENTICATION PAGES
   ============================ */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 60, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 110, 0.08) 0%, transparent 50%),
        var(--bg-primary);
}

.auth-container {
    width: 100%;
    max-width: 480px;
    padding: 3rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.auth-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 60, 65, 0.1);
}

.form-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-group small {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -0.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
}

.checkbox-label a {
    color: var(--accent);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.forgot-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.875rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.form-divider {
    position: relative;
    text-align: center;
    margin: 0.5rem 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border);
}

.form-divider::before {
    left: 0;
}

.form-divider::after {
    right: 0;
}

.form-divider span {
    padding: 0 1rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.btn-discord {
    background: #5865F2;
    color: white;
    border: none;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.auth-footer p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.auth-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ============================
   CART PAGE
   ============================ */
.cart-wrapper {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: var(--bg-primary);
}

.cart-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

/* Cart Items */
.cart-items {
    display: grid;
    gap: 1.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: rgba(255, 60, 65, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 60, 65, 0.1);
    border-radius: 12px;
    color: var(--accent);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.cart-item-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.cart-item-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cart-item-price {
    text-align: right;
}

.cart-item-price .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.cart-item-price .period {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.cart-item-remove {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.cart-item-remove:hover {
    background: rgba(255, 60, 65, 0.2);
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(90deg);
}

/* Empty Cart */
.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.empty-cart svg {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.empty-cart h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-cart p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Cart Summary */
.cart-summary {
    position: sticky;
    top: 100px;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.cart-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.summary-row span:first-child {
    color: var(--text-secondary);
}

.summary-row.total {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    padding-top: 1rem;
}

.summary-row .discount {
    color: #2ed573;
}

.summary-divider {
    height: 1px;
    background: var(--border);
    margin: 1rem 0;
}

.discount-code {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.discount-code input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
}

.discount-code input:focus {
    outline: none;
    border-color: var(--accent);
}

.payment-methods {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.payment-methods small {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-icons span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Cart Button in Nav */
.cart-btn {
    position: relative;
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--accent);
    color: white;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ============================
   DOWNLOAD MODAL
   ============================ */
.download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.download-modal.active {
    display: flex;
}

.download-modal-content {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
}

.download-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.download-modal-header svg {
    color: var(--accent);
    margin-bottom: 1rem;
}

.download-modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.download-modal-header p {
    color: var(--text-secondary);
}

.download-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row span:first-child {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.info-row span:last-child {
    font-weight: 600;
}

.info-row code {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--accent);
    background: rgba(255, 60, 65, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.download-instructions {
    margin-bottom: 2rem;
}

.download-instructions h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.download-instructions ol {
    margin-left: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.download-instructions li {
    color: var(--text-secondary);
    line-height: 1.6;
}

.download-warnings {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 159, 67, 0.1);
    border: 1px solid rgba(255, 159, 67, 0.3);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.download-warnings svg {
    color: #ff9f43;
    flex-shrink: 0;
}

.download-warnings p {
    font-size: 0.875rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.download-actions {
    display: grid;
    gap: 1rem;
}

.download-support {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.download-support p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.download-support a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.download-support a:hover {
    text-decoration: underline;
}

/* ============================
   SPINNER ANIMATION
   ============================ */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================
   UPDATE NOTIFICATION
   ============================ */
.update-notification {
    position: fixed;
    bottom: -200px;
    right: 2rem;
    width: 320px;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    z-index: 9998;
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.update-notification.show {
    bottom: 2rem;
}

.update-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.update-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ============================
   TOAST ANIMATIONS
   ============================ */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* ============================
   RESPONSIVE - CART & AUTH
   ============================ */
@media (max-width: 1024px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .auth-container {
        padding: 2rem 1.5rem;
    }
    
    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    
    .cart-item-price {
        grid-column: 1 / -1;
        text-align: left;
        padding-top: 1rem;
        border-top: 1px solid var(--border);
    }
    
    .cart-item-remove {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .cart-item {
        position: relative;
    }
    
    .update-notification {
        width: calc(100% - 4rem);
        right: 2rem;
        left: 2rem;
    }
}

/* ============================
   BUTTON STATES
   ============================ */
button:disabled,
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

button:disabled:hover,
.btn:disabled:hover {
    transform: none !important;
}

/* ============================
   LOADING STATES
   ============================ */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.loading-spinner svg {
    color: var(--accent);
}

/* ============================
   FORM VALIDATION
   ============================ */
.form-group input:invalid:not(:placeholder-shown) {
    border-color: var(--accent);
}

.form-group input:valid:not(:placeholder-shown) {
    border-color: #2ed573;
}

.form-error {
    color: var(--accent);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.form-success {
    color: #2ed573;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* ============================
   NAVBAR AUTH BUTTONS
   ============================ */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link-btn {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-link-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cart {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cart:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    background: var(--accent);
    color: white;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    border: 2px solid var(--bg-primary);
}

.cart-badge:empty {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-auth {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

/* ============================
   LIVE STATS
   ============================ */
.live-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    flex-wrap: wrap;
}

.live-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.live-stat-item span[data-stat] {
    color: var(--accent);
    font-weight: 700;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #2ed573;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    .live-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================
   PRODUCTS PAGE - IMPROVED
   ============================ */

.products-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(255, 60, 65, 0.15);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, rgba(255, 60, 65, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
}

.product-card.featured::before {
    opacity: 1;
    height: 6px;
}

/* Product Header */
.product-header {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.product-header .product-badge {
    align-self: flex-start;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.2);
}

.product-header .product-badge.status-undetected {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border-color: rgba(46, 213, 115, 0.2);
}

.product-card.featured .product-badge:not(.status-undetected) {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    color: white;
    border: none;
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 60, 65, 0.05);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    background: rgba(255, 60, 65, 0.1);
    border-color: var(--accent);
    transform: scale(1.05);
}

.product-icon svg {
    color: var(--accent);
}

.product-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    text-align: center;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-header p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Product Features */
.product-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.product-features li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.product-features li:hover {
    background: rgba(255, 60, 65, 0.05);
    color: var(--text-primary);
}

.product-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Product Pricing */
.product-pricing {
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.price-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.price-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.price-option:hover {
    background: rgba(255, 60, 65, 0.05);
    border-color: var(--accent);
}

.price-option.highlighted {
    background: linear-gradient(135deg, rgba(255, 60, 65, 0.1) 0%, rgba(255, 60, 65, 0.05) 100%);
    border: 2px solid var(--accent);
    position: relative;
}

.price-option.highlighted::after {
    content: 'Best Value';
    position: absolute;
    top: -10px;
    right: -5px;
    background: var(--accent);
    color: white;
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-weight: 700;
}

.price-option .duration {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.price-option .amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-actions .btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .price-options {
        grid-template-columns: 1fr;
    }
}

/* ============================
   PRODUCT DETAIL PAGE
   ============================ */

.product-detail-section {
    padding: 4rem 0 6rem;
    background: var(--bg-primary);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.product-detail-header {
    margin-bottom: 2rem;
}

.product-detail-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 1rem 0 0.5rem;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
}

.product-info-card,
.product-features-card,
.product-purchase-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.product-info-card h3,
.product-features-card h3,
.product-purchase-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.product-features-card .feature-category {
    margin-bottom: 2rem;
}

.product-features-card .feature-category:last-child {
    margin-bottom: 0;
}

.product-features-card .feature-category h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.product-features-card li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
}

.product-features-card li::before {
    content: '•';
    color: var(--accent);
    font-size: 1.25rem;
    line-height: 1;
}

/* Purchase Card */
.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pricing-option {
    position: relative;
}

.pricing-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pricing-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--bg-primary);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing-option input[type="radio"]:checked + .pricing-option-content {
    background: rgba(255, 60, 65, 0.05);
    border-color: var(--accent);
}

.pricing-option:hover .pricing-option-content {
    border-color: var(--accent);
}

.pricing-option.recommended .pricing-option-content {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(255, 60, 65, 0.08) 0%, rgba(255, 60, 65, 0.03) 100%);
}

.pricing-option-content .duration {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-option-content .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.pricing-option-content .badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--accent);
    color: white;
    font-size: 0.625rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 700;
}

.product-guarantees {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.guarantee-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Info List */
.info-list {
    display: grid;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.info-item .value {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 600;
}

.info-item .value.status-undetected {
    color: #2ed573;
}

/* Responsive */
@media (max-width: 968px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-detail-right {
        order: -1;
    }
    
    .product-detail-header h1 {
        font-size: 2rem;
    }
}

/* ============================
   IMPROVED PRODUCTS SECTION
   ============================ */

.products-preview-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.products-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-preview-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(255, 60, 65, 0.2);
}

.product-preview-card:hover::before {
    opacity: 1;
}

.product-preview-card.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, rgba(255, 60, 65, 0.05) 0%, transparent 100%);
}

.product-preview-card.featured::before {
    opacity: 1;
    height: 6px;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(46, 213, 115, 0.15);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-preview-card.featured .product-badge {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: white;
    border: none;
}

.product-preview-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 60, 65, 0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin: 1rem 0 1.5rem;
    transition: all 0.3s ease;
}

.product-preview-card:hover .product-preview-icon {
    background: rgba(255, 60, 65, 0.1);
    border-color: var(--accent);
    transform: scale(1.05);
}

.product-preview-icon svg {
    color: var(--accent);
}

.product-preview-content {
    width: 100%;
}

.product-preview-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-preview-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.product-preview-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-preview-price .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.product-preview-price .period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================
   FORTNITE ACCOUNTS PREVIEW
   ============================ */

.accounts-preview-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.accounts-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.account-preview-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.account-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.account-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(255, 60, 65, 0.2);
}

.account-preview-card:hover::before {
    opacity: 1;
}

.account-preview-card.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, rgba(255, 60, 65, 0.05) 0%, transparent 100%);
}

.account-preview-card.featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
}

.account-preview-card.premium {
    border: 2px solid #f1c40f;
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.05) 0%, transparent 100%);
}

.account-preview-card.premium::before {
    opacity: 1;
    background: linear-gradient(90deg, #f1c40f, #e67e22);
}

.account-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 60, 65, 0.1);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.account-preview-card.featured .account-badge {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: white;
}

.account-preview-card.premium .account-badge {
    background: linear-gradient(135deg, #f1c40f, #e67e22);
    color: white;
}

.account-icon {
    font-size: 3.5rem;
    margin: 1rem 0;
    filter: drop-shadow(0 4px 12px rgba(255, 60, 65, 0.3));
}

.account-preview-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.account-preview-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.account-preview-price {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.account-preview-price .price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .products-preview-grid,
    .accounts-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.brand-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-icon {
    color: var(--accent);
}

.footer-tagline {
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(88, 101, 242, 0.1);
    color: #7289DA;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(88, 101, 242, 0.2);
    transform: translateY(-2px);
    color: #5865F2;
}

.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left p {
    margin: 0;
    opacity: 0.7;
}

.security-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .brand-section {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .security-badges {
        justify-content: center;
    }
    
    .footer {
        padding: 3rem 0 2rem;
    }
}

@media (max-width: 480px) {
    .footer-section h4 {
        font-size: 0.8rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

.team-section { padding: 5rem 0; }
.team-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 2rem; 
    max-width: 900px; 
    margin: 0 auto; 
}

.team-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255,60,65,0.15);
}

.team-avatar {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--accent);
    object-fit: cover;
}

.discord-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    background: #5865F2;
    border-radius: 50%;
    border: 4px solid var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-role {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(88,101,242,0.15);
    color: #7289da;
    border: 1px solid rgba(88,101,242,0.3);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.discord-link:hover {
    background: rgba(88,101,242,0.25);
    color: #5865f2;
    transform: translateY(-2px);
}
