/* CSS Variables */
:root {
    /* Colors */
    --color-bg-dark: #0f0f11;
    --color-bg-surface: #1a1a1e;
    --color-bg-surface-light: #24242a;
    --color-primary: #ff6b00;
    --color-primary-hover: #e65c00;
    --color-primary-glow: rgba(255, 107, 0, 0.4);
    --color-text-main: #ffffff;
    --color-text-muted: #a1a1aa;
    --color-border: #2f2f36;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-max-width: 1200px;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, #ff9d00, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-align: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #e65c00);
    color: #fff;
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(255, 107, 0, 0.05);
    color: var(--color-primary);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.badge-white {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-speed);
    padding: 20px 0;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(15, 15, 17, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
}

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

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

.logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--color-text-main);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-btn {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-main);
    padding: 8px 20px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
}

.login-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,15,17, 0.95) 0%, rgba(15,15,17, 0.8) 55%, rgba(15,15,17, 0.4) 100%);
    z-index: 0;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 0, 0.25) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

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

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-item i {
    color: var(--color-primary);
    font-size: 1.3rem;
}

/* Server Mockup Animation */
.server-mockup {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.server-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rack-unit {
    height: 60px;
    background: var(--color-bg-surface-light);
    border-radius: 6px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
}

.rack-unit.active {
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: inset 0 0 20px rgba(255, 107, 0, 0.05);
}

.lights {
    display: flex;
    gap: 8px;
}

.lights span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.lights span.blink {
    animation: blink 1s infinite;
}

.lights span:nth-child(2) { background: #3b82f6; box-shadow: 0 0 10px rgba(59, 130, 246, 0.5); animation: blink 2s infinite; }
.lights span:nth-child(3) { background: #facc15; box-shadow: 0 0 10px rgba(250, 204, 21, 0.5); animation: blink 1.5s infinite; }

.rack-unit.active .brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Features */
.features {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--color-bg-dark), var(--color-bg-surface));
}

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

.feature-card {
    background: var(--color-bg-surface);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: transform var(--transition-speed), border-color var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--color-primary);
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Split Sections for Detailed Content */
.split-section {
    padding: 100px 0;
    overflow: hidden;
    background: var(--color-bg-dark);
}

.split-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-wrapper.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.split-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.split-list {
    margin-bottom: 30px;
}

.split-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.split-list li i {
    color: var(--color-primary);
    font-size: 1.8rem;
    background: rgba(255, 107, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.split-list h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: var(--color-text-main);
}

.split-list p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.split-image {
    flex: 1;
    position: relative;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--color-border);
    object-fit: cover;
    max-height: 450px;
}

.split-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
}

.split-wrapper.reverse .split-image::before {
    left: 15px;
    right: -15px;
}

/* Services */
.services {
    padding: 100px 0;
}

.games-bg {
    background-image: radial-gradient(circle at 100% 0%, rgba(255, 107, 0, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 0% 100%, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
}

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

.game-card {
    background: var(--color-bg-surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform var(--transition-speed);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-img {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-bg-surface) 0%, transparent 100%);
}

.game-title {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
}

.game-info {
    padding: 25px;
}

.game-info p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.game-info strong {
    color: var(--color-text-main);
    font-size: 1.2rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    transition: transform var(--transition-speed);
}

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

.pricing-card.popular {
    border-color: var(--color-primary);
    background: linear-gradient(to bottom, var(--color-bg-surface-light), var(--color-bg-surface));
    padding: 50px 40px;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-primary);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-header p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 5px;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.cents {
    font-size: 1.2rem;
    font-weight: 600;
}

.period {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-left: 5px;
}

.features-list {
    margin-bottom: 35px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--color-text-muted);
}

.features-list li i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--color-bg-surface-light), var(--color-bg-surface));
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 16px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.cta-action {
    position: relative;
    z-index: 2;
}

.cta-action .btn i {
    vertical-align: middle;
    margin-left: 5px;
}

/* Footer */
.footer {
    background: #0a0a0c;
    padding: 80px 0 30px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about p {
    color: var(--color-text-muted);
    margin: 20px 0;
    max-width: 350px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.social-links a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--color-primary);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact ul li i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 2rem;
}
/* Page Header */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(to bottom, var(--color-bg-dark), var(--color-bg-surface));
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}
.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}
.page-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Partners / Trust Banner */
.partners {
    padding: 40px 0;
    background: #0a0a0c;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.partners-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.partner-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    transition: all var(--transition-speed);
}

.partner-text:hover {
    color: var(--color-text-main);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--color-bg-dark);
}

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

.testimonial-card {
    background: var(--color-bg-surface);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    position: relative;
    transition: transform var(--transition-speed);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
}

.testimonial-card i.bxs-quote-alt-left {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: rgba(255, 107, 0, 0.1);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testimonial-user span {
    font-size: 0.85rem;
    color: var(--color-primary);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--color-bg-surface-light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 25px 30px;
    transition: all var(--transition-speed);
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.3);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--color-text-main);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-item h4 i {
    color: var(--color-primary);
    margin-top: 3px;
}

.faq-item p {
    color: var(--color-text-muted);
    font-size: 1rem;
    padding-left: 34px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-glow {
        top: 0;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .pricing-card.popular {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .split-wrapper, .split-wrapper.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .split-list li {
        flex-direction: column;
        align-items: center;
    }
    
    .split-list li i {
        margin-bottom: 10px;
    }
    
    .split-image {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links, .login-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
