:root {
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --neon-cyan: #00f5ff;
    --neon-pink: #ff006e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --gradient-glow: linear-gradient(135deg, #00f5ff 0%, #ff006e 100%);
    --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.5);
    --glow-pink: 0 0 20px rgba(255, 0, 110, 0.5);
    --radius-lg: 16px;
    --radius-md: 8px;
    --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', system-ui, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scanlines overlay */
.scanlines-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: 9999;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', system-ui, sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow-border {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 245, 255, 0.6); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

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

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

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

.nav__links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav__link {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transition: var(--transition);
}

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

.nav__link:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn--primary {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
}

.btn--primary:hover {
    background: #00d4e0;
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.7);
}

.btn--outline {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
}

.btn--outline:hover {
    background: rgba(0, 245, 255, 0.1);
    box-shadow: var(--glow-cyan);
}

.btn--small {
    padding: 8px 16px;
    font-size: 12px;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    z-index: 999;
    padding: 100px 24px 40px;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav__link {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--text-primary);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 245, 255, 0.05) 0%, transparent 40%);
}

.hero__grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__text {
    animation: slide-up 0.8s ease-out;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    color: var(--neon-cyan);
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero__title span {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps5-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.ps5-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.3) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

.ps5-body {
    position: relative;
    width: 200px;
    height: 60px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 12px;
    transform: perspective(500px) rotateX(15deg);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.ps5-body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 3px solid var(--neon-cyan);
    border-radius: 50%;
    box-shadow: var(--glow-cyan);
}

.ps5-body::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: var(--glow-cyan);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border: 2px solid rgba(0, 245, 255, 0.2);
    animation: float 8s ease-in-out infinite;
}

.shape--1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    animation-delay: 0s;
}

.shape--2 {
    top: 60%;
    right: 15%;
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    animation-delay: -2s;
}

.shape--3 {
    bottom: 30%;
    left: 20%;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border-color: rgba(255, 0, 110, 0.2);
    animation-delay: -4s;
}

.shape--4 {
    top: 40%;
    right: 25%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-color: rgba(255, 0, 110, 0.2);
    animation-delay: -6s;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    color: var(--neon-cyan);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section__title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

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

/* Features Section */
.features {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 245, 255, 0.02) 50%, transparent 100%);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--glow-cyan);
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--neon-cyan);
}

.feature-card__title {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card__text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Pricing / Console Section */
.pricing {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 110, 0.02) 50%, transparent 100%);
}

.console-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.console-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.console-card:hover {
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.console-card__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.console-card__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.console-card__name {
    font-size: 24px;
    color: var(--neon-cyan);
}

.console-card__specs,
.console-card__bundle {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.console-card__specs h3,
.console-card__bundle h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.console-card__specs p,
.console-card__bundle p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.console-card__price {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

.console-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.console-card__image img {
    max-width: 100%;
    border-radius: var(--radius-md);
}

/* FAQ Section */
.faq__list {
    max-width: 800px;
    margin: 20px auto 0;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: var(--bg-card);
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
}

.faq-item__question:hover {
    background: var(--bg-card-hover);
}

.faq-item__icon {
    transition: var(--transition);
    color: var(--neon-cyan);
}

.faq-item.active .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer-inner {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
        var(--bg-card);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 12px;
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.contact__info-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.contact__info-value {
    font-size: 16px;
}

.contact__info-value a {
    color: var(--neon-cyan);
}

.contact__social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.contact__social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.contact__social-link:hover {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: var(--bg-dark);
}

.contact-form-wrapper {
    padding: 32px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    font-size: 20px;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300f5ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 60px;
}

.form-group--consent {
    margin-top: 4px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    user-select: none;
}

.consent-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.consent-label input[type="checkbox"]:checked {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
}

.consent-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid var(--bg-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-link {
    color: var(--neon-cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: var(--transition);
}

.consent-link:hover {
    color: var(--neon-pink);
}

.form-message {
    display: none;
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 14px;
    text-align: center;
}

.form-message.success {
    display: block;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.form-message.error {
    display: block;
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.footer__contact i {
    color: var(--neon-cyan);
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer__social-link:hover {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: var(--bg-dark);
}

.footer__bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Document link */
.doc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--neon-cyan);
    font-size: 14px;
    transition: var(--transition);
}

.doc-link:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

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

    .hero__subtitle {
        margin: 0 auto 40px;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .console-card__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav .btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .section {
        padding: 60px 0;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__brand {
        max-width: none;
    }

    .footer__contacts {
        align-items: center;
    }
}