* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gaming-orange: #FF6B35;
    --gaming-emerald: #10B981;
    --gaming-gold: #F59E0B;
    --gaming-blue: #3B82F6;
    --dark-bg: #000000;
    --dark-surface: #111111;
    --dark-border: #222222;
    --darker-surface: #0a0a0a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: #F1F5F9;
    line-height: 1.6;
}

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

/* Header */
.header {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dark-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #333333, #444444);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F1F5F9;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--gaming-orange);
}

.nav-link.active {
    color: var(--gaming-orange);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gaming-orange);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #D1D5DB;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--dark-border);
}

.mobile-menu.show {
    display: flex;
}

.btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gaming-orange);
    color: white;
}

.btn-primary:hover {
    background: #E55A2B;
    transform: translateY(-2px);
}

.btn-gradient {
    background: var(--gaming-orange);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-gradient:hover {
    background: #E55A2B;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #444444;
    background: transparent;
    color: #D1D5DB;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-outline:hover {
    border-color: var(--gaming-orange);
    background: rgba(255, 107, 53, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.3), rgba(68, 68, 68, 0.2));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #F1F5F9, #D1D5DB, #9CA3AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #F1F5F9;
}

.stat-label {
    color: #9CA3AF;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--darker-surface);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #F1F5F9;
}

.section-title p {
    font-size: 1.25rem;
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--dark-surface);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--dark-border);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #444444;
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, #333333, #444444);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #F1F5F9;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.plan-card {
    background: var(--dark-surface);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--dark-border);
    position: relative;
    transition: all 0.3s;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: #444444;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.plan-card.popular {
    border: 2px solid var(--gaming-orange);
    transform: scale(1.02);
    background: var(--dark-surface);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.1);
}

.plan-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.plan-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gaming-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, #333333, #444444);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #F1F5F9;
}

.plan-description {
    color: #9CA3AF;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F1F5F9;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #D1D5DB;
}

.plan-features li::before {
    content: '✓';
    color: var(--gaming-orange);
    font-weight: bold;
    margin-right: 0.75rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #333333, #444444);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.modal h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #F1F5F9;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #D1D5DB;
}

.form-input, .form-select {
    width: 100%;
    padding: 0.75rem;
    background: var(--darker-surface);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--gaming-orange);
}

.form-select option {
    background: var(--darker-surface);
    color: white;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--gaming-orange);
}

.checkbox-label {
    font-size: 0.875rem;
    color: #9CA3AF;
}

.checkbox-label a {
    color: var(--gaming-orange);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-cancel {
    flex: 1;
    background: transparent;
    border: 1px solid #444444;
    color: #D1D5DB;
}

.btn-cancel:hover {
    background: rgba(68, 68, 68, 0.1);
}

.btn-submit {
    flex: 1;
    background: var(--gaming-orange);
    color: white;
}

.btn-submit:hover {
    background: #E55A2B;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-brand {
    grid-column: span 2;
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #F1F5F9;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gaming-orange);
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--darker-surface);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gaming-orange);
    color: white;
}

/* Utility Classes */
.hidden { display: none; }
.text-purple { color: var(--gaming-purple); }
.text-emerald { color: var(--gaming-emerald); }
.text-gold { color: var(--gaming-gold); }
.text-blue { color: var(--gaming-blue); }
.text-orange { color: var(--gaming-orange); }
.bg-gradient-purple { background: linear-gradient(135deg, var(--gaming-purple), #7C3AED); }
.bg-gradient-emerald { background: linear-gradient(135deg, var(--gaming-emerald), #059669); }
.bg-gradient-gold { background: linear-gradient(135deg, var(--gaming-gold), #D97706); }
.bg-gradient-blue { background: linear-gradient(135deg, var(--gaming-blue), #2563EB); }
.bg-gradient-orange { background: linear-gradient(135deg, #333333, #444444); }

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .plan-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .btn-gradient {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .plan-card {
        padding: 1rem;
    }
    
    .plan-features {
        font-size: 0.9rem;
    }
    
    .plan-price {
        font-size: 1.75rem;
    }
}

/* Additional styles for contact support plans */
.contact-plan {
    position: relative;
}

.contact-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.3), rgba(68, 68, 68, 0.2));
    border-radius: 16px;
    pointer-events: none;
}

/* Enhanced button hover effects */
.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.get-started-btn:active {
    transform: translateY(0);
}

/* Improved card animations */
.plan-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plan-card:hover .plan-icon {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Loading state for buttons */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Improved focus states for accessibility */
.btn:focus,
.form-input:focus,
.form-select:focus {
    outline: 2px solid var(--gaming-orange);
    outline-offset: 2px;
}

/* Better contrast for form elements */
.form-input::placeholder {
    color: #6B7280;
}

.form-select {
    cursor: pointer;
}

/* Smooth transitions for all interactive elements */
* {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
