/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --card-bg: #1a1a1a;
    --accent-primary: #0066ff;
    --accent-secondary: #0052cc;
    --accent-gradient: linear-gradient(135deg, #0066ff, #0052cc);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #333333;
    --shadow-primary: 0 10px 40px rgba(0, 102, 255, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-text .accent {
    color: var(--accent-primary);
}

.logo-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-primary);
    background: rgba(0, 102, 255, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    background: rgba(0, 102, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.2);
}

/* Enhanced Interactive Auth Buttons - Actual Button Styling */
.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 100px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.auth-btn:hover::before {
    left: 100%;
}

.login-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.12));
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.login-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.2));
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.register-btn {
    background: var(--accent-gradient);
    color: white;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.register-btn:hover {
    background: linear-gradient(135deg, #1a75ff, #0052cc);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
    border-color: #1a75ff;
}

.register-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.auth-btn:hover .btn-icon {
    transform: scale(1.1);
}

/* User Profile Dropdown */
.user-profile {
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 4px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.dropdown-item.logout-item:hover {
    background: rgba(255, 70, 85, 0.1);
    color: #ff4655;
}

.dropdown-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.tentacle-graphics {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center right, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
}

.tentacle-graphics::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--accent-gradient);
    border-radius: 50% 30% 60% 40%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.tentacle-graphics::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--accent-gradient);
    border-radius: 40% 60% 30% 50%;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite reverse;
}

/* Division 2 Character Silhouette */
.hero-background::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 200px;
    height: 400px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%,
        rgba(255, 140, 0, 0.12) 25%,
        rgba(139, 69, 19, 0.1) 50%,
        rgba(101, 67, 33, 0.08) 75%,
        transparent 100%
    );
    clip-path: polygon(
        40% 0%,
        60% 0%,
        65% 8%,
        70% 15%,
        68% 25%,
        72% 35%,
        75% 45%,
        78% 55%,
        80% 65%,
        82% 75%,
        85% 85%,
        87% 95%,
        85% 100%,
        15% 100%,
        13% 95%,
        15% 85%,
        18% 75%,
        20% 65%,
        22% 55%,
        25% 45%,
        28% 35%,
        32% 25%,
        30% 15%,
        35% 8%
    );
    z-index: 1;
    animation: characterFloat 8s ease-in-out infinite;
}

@keyframes characterFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.15;
    }
    50% { 
        transform: translateY(-15px) scale(1.02);
        opacity: 0.2;
    }
}

/* Character weapon silhouette */
.hero-background::before {
    content: '';
    position: absolute;
    top: 25%;
    right: 5%;
    width: 8px;
    height: 120px;
    background: linear-gradient(180deg, 
        rgba(47, 47, 47, 0.3) 0%,
        rgba(79, 79, 79, 0.2) 50%,
        rgba(31, 31, 31, 0.1) 100%
    );
    border-radius: 2px;
    z-index: 2;
    animation: weaponFloat 8s ease-in-out infinite;
}

@keyframes weaponFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(-5deg);
    }
    50% { 
        transform: translateY(-15px) rotate(-3deg);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .accent {
    color: var(--accent-primary);
}

.hero-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .white {
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--secondary-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent-primary);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: var(--text-muted);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

/* Showcase Section */
.showcase {
    padding: 120px 0;
    background: var(--primary-bg);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.showcase-title .accent {
    color: var(--accent-primary);
}

.showcase-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.showcase-stats {
    display: flex;
    gap: 40px;
}

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

.stat-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.mockup-container {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.mockup-screen {
    background: var(--secondary-bg);
    border-radius: 15px;
    overflow: hidden;
}

.mockup-header {
    background: var(--border-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.mockup-dots span:first-child {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:last-child {
    background: #28ca42;
}

.mockup-title {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.mockup-content {
    padding: 30px 20px;
}

.mockup-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.feature-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

.feature-status.active {
    background: var(--accent-primary);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

/* Typography Section */
.typography {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.typography-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.typography-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.typography-card.primary {
    background: var(--accent-gradient);
}

.typography-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.typography-display {
    margin-bottom: 20px;
}

.typography-large {
    font-size: 6rem;
    font-weight: 300;
    color: white;
    line-height: 1;
}

.typography-font {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.typography-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-primary);
}

.typography-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Video Section */
.video-section {
    padding: 120px 0;
    background: var(--secondary-bg);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Cheat Status */
.cheat-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 15px 25px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid var(--accent-primary);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.status-indicator {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.status-text {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.status-text strong {
    color: var(--accent-primary);
}

/* Currency Selector */
.currency-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-btn img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.currency-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.currency-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--primary-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent-primary);
}

.pricing-card.featured {
    border: 2px solid var(--accent-primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.price-symbol {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-pricing {
    width: 100%;
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-pricing.primary {
    background: var(--accent-gradient);
    color: white;
    border: none;
}

.btn-pricing.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.3);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: var(--primary-bg);
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.cta-title .accent {
    color: var(--accent-primary);
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary.large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-primary);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: white;
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-description {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.footer-title {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-primary);
}

.footer-stats {
    display: flex;
    gap: 60px;
    justify-content: flex-end;
}

.footer-stat {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .typography-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .showcase-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 30px;
    }
}

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

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Notification and Activity Styles */
.notification-badge {
    background: #ff4757;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

.new-ticket-badge {
    background: #ff6b6b;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 8px;
    font-weight: bold;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.activity-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(5px);
}

.activity-icon {
    font-size: 20px;
    margin-right: 15px;
    min-width: 30px;
}

.activity-content {
    flex: 1;
}

.activity-description {
    color: var(--text-primary);
    margin-bottom: 5px;
    line-height: 1.4;
}

.activity-time {
    color: var(--text-muted);
    font-size: 12px;
}

.license-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.license-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.license-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.license-header h4 {
    color: var(--accent-primary);
    margin: 0;
}

.license-key {
    background: var(--primary-bg);
    color: var(--accent-secondary);
    padding: 5px 10px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    border: 1px solid var(--border-color);
}

.license-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    color: var(--text-secondary);
}

.license-details > div {
    padding: 5px 0;
}

.status-active {
    background: #51cf66;
    color: white;
}

.status-expired {
    background: #ff6b6b;
    color: white;
}

.search-container {
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    max-width: 400px;
    padding: 12px 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.ticket-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ticket-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ticket-header h4 {
    margin: 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.ticket-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

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

.no-data {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 20px;
    font-style: italic;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styles */
::selection {
    background: var(--accent-primary);
    color: white;
}

::-moz-selection {
    background: var(--accent-primary);
    color: white;
}

/* ============================================
   GAME-STYLE ANIMATIONS
   ============================================ */

/* Page Load Animation - Glitch Effect */
@keyframes glitchIn {
    0% {
        opacity: 0;
        transform: translateX(-100%);
        filter: hue-rotate(0deg) blur(5px);
    }
    10% {
        opacity: 1;
        transform: translateX(5%);
        filter: hue-rotate(180deg) blur(3px);
    }
    20% {
        transform: translateX(-2%);
        filter: hue-rotate(90deg) blur(2px);
    }
    30% {
        transform: translateX(2%);
        filter: hue-rotate(270deg) blur(1px);
    }
    40% {
        transform: translateX(-1%);
        filter: hue-rotate(45deg) blur(0.5px);
    }
    50% {
        transform: translateX(1%);
        filter: hue-rotate(0deg) blur(0px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: hue-rotate(0deg) blur(0px);
    }
}

/* Ping Pong Animation */
@keyframes pingPong {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-20px);
    }
    75% {
        transform: translateX(20px);
    }
}

/* Slide In From Top */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide In From Bottom */
@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Zoom In Bounce */
@keyframes zoomInBounce {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Rotate In */
@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-360deg) scale(0);
    }
    100% {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Pulse Glow */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 102, 255, 0.8), 0 0 60px rgba(0, 102, 255, 0.4);
    }
}

/* Matrix Rain Effect for Background */
@keyframes matrixRain {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeOut 0.5s ease-out 1.5s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

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

.loading-logo {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #0066ff, #00ffff, #0066ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 2s ease infinite, pingPong 1s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 20px auto;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #0066ff, #00ffff);
    border-radius: 2px;
    animation: loadingProgress 1.5s ease-out forwards;
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Apply animations to page elements */
.navbar {
    animation: slideInFromTop 0.8s ease-out;
}

.hero-content {
    animation: glitchIn 1s ease-out 0.3s backwards;
}

.hero-stats {
    animation: slideInFromBottom 1s ease-out 0.5s backwards;
}

.feature-card {
    animation: zoomInBounce 0.8s ease-out backwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.showcase-title {
    animation: pingPong 2s ease-in-out infinite;
}

.mockup-container {
    animation: rotateIn 1s ease-out 0.6s backwards;
}

.pricing-card {
    animation: slideInFromBottom 0.8s ease-out backwards;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.3s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.4s;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Cheat Status Animation */
.cheat-status {
    animation: pulseGlow 2s ease-in-out infinite, slideInFromTop 1s ease-out 0.7s backwards;
}

/* Video Section Animation */
.video-container {
    animation: zoomInBounce 1s ease-out 0.8s backwards;
}

/* Footer Animation */
.footer {
    animation: slideInFromBottom 1s ease-out 1s backwards;
}

/* Page Transition Effect */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0066ff, #001a33);
    z-index: 9999;
    display: none;
    opacity: 0;
}

.page-transition.active {
    display: block;
    animation: pageTransition 0.6s ease-in-out;
}

@keyframes pageTransition {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        opacity: 0;
        transform: scaleX(0);
    }
}

/* Hover Animations */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

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

/* Floating Animation for Stats */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-item {
    animation: float 3s ease-in-out infinite;
}

.stat-item:nth-child(1) {
    animation-delay: 0s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-item:nth-child(3) {
    animation-delay: 1s;
}

/* Glowing Text Effect */
@keyframes glowText {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 102, 255, 0.8), 0 0 30px rgba(0, 102, 255, 0.6);
    }
}

.hero-title .highlight {
    animation: glowText 2s ease-in-out infinite;
}

/* Matrix-style Background Particles */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.matrix-particle {
    position: absolute;
    color: rgba(0, 102, 255, 0.3);
    font-family: monospace;
    font-size: 14px;
    animation: matrixRain 10s linear infinite;
}
