*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent-primary: #ffffff;
    --accent-secondary: #333333;
    --border-color: #222222;
    --star-color: #fbbf24;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #050505;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-logo-img {
    width: 36px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--bg-card);
}

.nav-link.active {
    background: var(--bg-card);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.icon-btn:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.cart-btn {
    width: auto;
    padding: 0 14px;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
}

.paypal-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #0070ba;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: white;
    transition: background 0.2s;
}

.paypal-btn:hover {
    background: #005ea6;
}

.client-area-btn {
    padding: 8px 16px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: opacity 0.2s;

    display: flex;
    align-items: center;
    gap: 8px;
}

.client-area-btn svg {
    width: 18px;
}

.client-area-btn:hover {
    opacity: 0.9;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center top, rgba(40, 40, 40, 0.3) 0%, transparent 60%),
        linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.hero-title {
    padding-right: 20px;
    font-size: clamp(48px, 12vw, 140px);
    font-weight: 700;
    font-style: italic;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 40px;
    background: linear-gradient(180deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 20px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero video {
    position: absolute;
    width: 100%;
    opacity: .35;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.section-title {
    position: relative;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;

    width: 140px;
    height: 4px;

    transform: translateX(-50%);

    border-radius: 999px;

    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.15) 15%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(255, 255, 255, 0.15) 85%,
            transparent 100%);

    filter: blur(1px);
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.products-section {
    padding: 150px 0;
    background: var(--bg-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: #333;
}

.product-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.game-logo {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.product-type {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.installation-card .product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
}

.installation-icon {
    color: var(--text-secondary);
}

.dominate-section {
    padding: 150px 0;
    background: var(--bg-primary);
    text-align: center;
}

.gaming-setup {
    max-width: 700px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.gaming-setup img {
    width: 100%;
    height: auto;
}

.why-choose-section {
    padding: 0 0 150px 0;
    background: #050505;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #333;
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.testimonials-section {
    padding: 0 0 150px 0;
    background: #050505;
    overflow-x: hidden;
}

.testimonials-section .inner {
    max-width: 100%;
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #888;
    margin-bottom: 48px;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.marquee {
    width: 100%;
    overflow: visible;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.marquee-left .marquee-track {
    animation: scrollLeft 30s linear infinite;
}

.marquee-right .marquee-track {
    animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.testimonial-card {
    flex-shrink: 0;
    width: 320px;
    background: #0d0d0d;
    border: 1px solid #1f1f1f;
    border-radius: 16px;
    padding: 20px 24px;
    font-size: 14px;
    line-height: 1.5;
    color: #ccc;
    transition: .2s;
    white-space: normal;
    word-wrap: break-word;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.testimonial-card::before {
    content: "";
    letter-spacing: 2px;
    font-weight: 500;
    display: inline-block;
    margin-right: 6px;

    height: 13px;
    width: 74px;
    background-image: url('/img/stars.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.testimonial-card:hover {
    border-color: #737373;
    transform: scale(1.02);
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.stats-section {
    padding: 0 0 150px 0;
    background: #050505;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: #333;
    transform: translateY(-4px);
}

.stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 14px;
    margin: 0 auto 20px;
    color: var(--text-primary);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer {
    background: #050505;
    padding: 48px 0 28px;
    border-top: 1px solid #ffffff1a;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 48px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 34px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 32px;
    opacity: 0.95;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

.footer-nav a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    transition: 0.2s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.28);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.22);
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.65);
}

.badge {
    padding: 2px 6px;
    width: fit-content;

    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);

    background-color: #70707033;
    border-radius: 6px;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 12px 16px;
    }

    .main-nav {
        display: none;
    }

    .paypal-btn span {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .testimonial-card {
        width: 260px;
        padding: 16px 20px;
        font-size: 12px;
    }

    .marquee-track {
        gap: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 36px 0 24px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-nav,
    .footer-links {
        flex-wrap: wrap;
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .header-right {
        gap: 8px;
    }

    .cart-btn span {
        display: none;
    }

    .cart-btn {
        width: 36px;
        padding: 0;
    }

    .client-area-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}