/* --- DESIGN SYSTEM & VARIABLES --- */
:root {
    --bg-dark: #07060b;
    --bg-surface: #12101b;
    --bg-surface-alt: #171424;
    --bg-glass: rgba(18, 16, 27, 0.7);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --primary: #ff007f; /* Neon Pink */
    --secondary: #00f0ff; /* Neon Cyan */
    --accent: #bd00ff; /* Purple */
    --accent-orange: #ff9d00;
    
    --text-main: #f3f1f8;
    --text-muted: #9f9ab5;
    
    --font-heading: 'Outfit', 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --shadow-pink: 0 0 20px rgba(255, 0, 127, 0.3);
    --shadow-cyan: 0 0 20px rgba(0, 240, 255, 0.3);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

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

section {
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--bg-surface);
}

/* --- TYPOGRAPHY & BUTTONS --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

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

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-cyan-purple {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-pink { color: var(--primary); }
.text-cyan { color: var(--secondary); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    gap: 8px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 127, 0.4);
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    z-index: -1;
    filter: blur(12px);
    opacity: 0.6;
    transition: opacity var(--transition-normal);
}

.btn-glow:hover::after {
    opacity: 0.9;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    box-shadow: var(--shadow-pink);
}

.btn-full {
    width: 100%;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 0, 127, 0.1);
    border: 1px solid rgba(255, 0, 127, 0.3);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.badge-cyan {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
    color: var(--secondary);
}

/* --- GLASSMORPHISM CARD --- */
.glassmorphism {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
}


/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 6, 11, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: all var(--transition-normal);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: 0.05em;
}

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

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

.header-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}


/* --- HERO SECTION --- */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-price-tag {
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent);
    padding: 12px 24px;
    border-left: 4px solid var(--secondary);
    width: fit-content;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--secondary);
    text-shadow: var(--shadow-cyan);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
}

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

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-border-glow {
    position: relative;
    border-radius: 24px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.3), rgba(0, 240, 255, 0.3));
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.image-border-glow::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(transparent, var(--primary), transparent, var(--secondary), transparent);
    animation: rotate-glow 8s linear infinite;
    z-index: 1;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    position: relative;
    z-index: 2;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


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

.feature-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 127, 0.4);
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.15) 0%, rgba(189, 0, 255, 0.15) 100%);
    border: 1px solid rgba(255, 0, 127, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-card:nth-child(2n) .feature-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, rgba(189, 0, 255, 0.15) 100%);
    border-color: rgba(0, 240, 255, 0.3);
}

.feature-card:nth-child(2n) .feature-icon {
    color: var(--secondary);
}

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

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


/* --- EMULATORS SECTION --- */
.console-showcase {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.console-item {
    background-color: var(--bg-surface-alt);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.console-item:hover, .console-item.active {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--bg-surface-alt) 0%, rgba(255, 0, 127, 0.05) 100%);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(255, 0, 127, 0.15);
}

.console-item:nth-child(2n):hover, .console-item:nth-child(2n).active {
    border-color: var(--secondary);
    background: linear-gradient(180deg, var(--bg-surface-alt) 0%, rgba(0, 240, 255, 0.05) 100%);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.15);
}

.console-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.console-games {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.console-interactive-details {
    margin-top: 30px;
}

.interactive-card {
    background-color: var(--bg-surface-alt);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.interactive-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.interactive-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.console-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.interactive-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.interactive-img-el {
    width: 100%;
    display: block;
    height: auto;
    transition: transform var(--transition-normal);
}

.interactive-card:hover .interactive-img-el {
    transform: scale(1.03);
}


/* --- PAYMENT / BUSINESS SECTION --- */
.payment-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.payment-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.payment-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pay-feat-item {
    display: flex;
    gap: 20px;
}

.pay-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pay-feat-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.pay-feat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Revenue calculator box */
.revenue-card {
    padding: 40px;
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.05);
}

.revenue-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-align: center;
}

.revenue-calc {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.calc-val {
    font-weight: 700;
}

.calc-row.divider {
    height: 1px;
    background-color: var(--border-glass);
    margin: 8px 0;
}

.calc-row.highlight {
    font-size: 1.15rem;
    font-weight: 700;
}

.calc-row.highlight-sub {
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: 6px;
}

.revenue-footnote {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}


/* --- CONFIGURATOR SECTION --- */
.configurator-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.config-controls {
    padding: 40px;
}

.config-controls h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 10px;
}

.config-controls h3:not(:first-child) {
    margin-top: 35px;
}

/* Designs options */
.designs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.design-option {
    background-color: var(--bg-surface-alt);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.design-option:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.design-option.active {
    border-color: var(--primary);
    background-color: rgba(255, 0, 127, 0.05);
}

.design-preview {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
}

.design-name {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Payment system toggles */
.payment-toggles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: not-allowed;
}

.checkmark {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background-color: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Checkbox options */
.additional-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0; width: 0;
}

.checkbox-mark {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background-color: var(--bg-surface-alt);
    border: 1px solid var(--border-glass);
    display: inline-block;
    position: relative;
    transition: all var(--transition-fast);
}

.checkbox-container:hover input ~ .checkbox-mark {
    border-color: rgba(255, 255, 255, 0.3);
}

.checkbox-container input:checked ~ .checkbox-mark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkbox-mark::after {
    content: '';
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkbox-mark::after {
    display: block;
}

/* Config summary box */
.config-summary {
    position: sticky;
    top: 110px;
}

.summary-box {
    padding: 40px;
    border-color: rgba(255, 0, 127, 0.15);
}

.summary-box h4 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.summary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.summary-list li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot.purple { background-color: var(--accent); }
.dot.cyan { background-color: var(--secondary); }
.dot.pink { background-color: var(--primary); }
.dot.green { background-color: #00ff66; }
.dot.orange { background-color: var(--accent-orange); }
.dot.blue { background-color: #0088ff; }
.dot.violet { background-color: #8800ff; }

.summary-total {
    border-top: 1px solid var(--border-glass);
    padding-top: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.total-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
}

.total-price {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--primary);
    text-shadow: var(--shadow-pink);
}

.delivery-notice {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
}


/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    aspect-ratio: 16 / 10;
}

.gallery-item.large {
    grid-row: span 2;
    aspect-ratio: auto;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(7, 6, 11, 0.9) 0%, transparent 100%);
    padding: 30px;
    z-index: 2;
}

.gallery-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* --- FAQ SECTION --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-surface-alt);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.faq-arrow {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform var(--transition-normal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    padding: 0 30px;
}

.faq-answer p {
    color: var(--text-muted);
    padding-bottom: 24px;
    font-size: 0.95rem;
}

/* Open states */
.faq-item.active {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}


/* --- CONTACT & LEAD CAPTURE --- */
.contact {
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    bottom: -10%;
    left: 20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.12) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

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

.c-detail-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.c-detail-item i {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.c-detail-item div {
    display: flex;
    flex-direction: column;
}

.c-detail-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.c-detail-item strong {
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form-wrapper {
    padding: 40px;
    border-color: rgba(255, 0, 127, 0.2);
    box-shadow: 0 15px 40px rgba(255, 0, 127, 0.05);
    position: relative;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-surface-alt);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
}

.privacy-note {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 14px;
}

/* Form Success State */
.hidden {
    display: none !important;
}

.form-success-message {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 4rem;
    color: #00ff66;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 102, 0.3));
}

.form-success-message h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.form-success-message p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}


/* --- FOOTER --- */
.footer {
    background-color: #040306;
    border-top: 1px solid var(--border-glass);
    padding: 60px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 16px;
    max-width: 450px;
}

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

.footer-links h4, .footer-social h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

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

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

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-surface-alt);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-pink);
    transform: translateY(-2px);
}


/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .hero-container, .payment-container, .configurator-wrapper, .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .console-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .interactive-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .config-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .header-container {
        position: relative;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-surface);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border-glass);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
    
    .nav.open {
        display: flex;
    }
    
    .nav-link {
        padding: 16px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.03);
    }
    
    .header-btn {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .price-value {
        font-size: 2.2rem;
    }
    
    .designs-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-row: auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- ARCADE CABINET MINI-GAME --- */
.arcade-game-section {
    background-color: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.arcade-cabinet-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    margin: 40px auto;
    width: 100%;
}

.arcade-cabinet {
    width: 480px;
    background: linear-gradient(180deg, #18142c 0%, #0d0a1b 100%);
    border: 4px solid #3d3368;
    border-radius: 20px 20px 10px 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(189, 0, 255, 0.25),
                inset 0 0 15px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Cabinet Marquee */
.cabinet-marquee {
    height: 64px;
    background: #090614;
    border-bottom: 4px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
}

.cabinet-marquee .marquee-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.6);
    z-index: 2;
}

.cabinet-marquee .marquee-text .pink {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.cabinet-marquee .marquee-text .cyan {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary);
}

.cabinet-marquee::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.15) 0%, transparent 80%);
    z-index: 1;
}

/* Cabinet Screen Bezel */
.cabinet-screen-bezel {
    padding: 24px;
    background: radial-gradient(circle, #201b3a 0%, #0d0a1b 100%);
    border-bottom: 4px solid var(--secondary);
    position: relative;
}

.cabinet-screen {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #030208;
    border: 8px solid #2d264d;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.9),
                0 0 20px rgba(0, 240, 255, 0.15);
}

.cabinet-screen canvas {
    width: 100%;
    height: 100%;
    display: block;
    image-rendering: pixelated;
}

/* Glare & Scanlines CRT effect */
.screen-glare {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 30%, transparent 31%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}

.screen-scanlines {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(18, 16, 27, 0) 50%, rgba(0, 0, 0, 0.2) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 4;
}

.screen-scanlines::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, transparent 50%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

/* Game Overlay */
.game-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(3, 2, 8, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity var(--transition-normal);
}

.overlay-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.overlay-title {
    font-size: 2.2rem;
    color: #00ff66;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.6);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    animation: flash 1.5s infinite alternate;
}

.overlay-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
    margin-bottom: 24px;
    font-weight: 700;
    animation: blink-text 1s infinite steps(2);
}

.overlay-credits {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes flash {
    0% { opacity: 0.8; text-shadow: 0 0 5px rgba(0, 255, 102, 0.5); }
    100% { opacity: 1; text-shadow: 0 0 20px rgba(0, 255, 102, 0.9), 0 0 30px rgba(0, 255, 102, 0.4); }
}

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

/* Cabinet Speakers */
.cabinet-speakers {
    display: flex;
    justify-content: space-between;
    padding: 8px 30px;
    background: #110e24;
}

.speaker-grill-left, .speaker-grill-right {
    width: 60px;
    height: 12px;
    background: repeating-linear-gradient(90deg, #2a2254, #2a2254 4px, transparent 4px, transparent 8px);
    opacity: 0.6;
}

/* Cabinet Control Panel */
.cabinet-controls-panel {
    background: linear-gradient(180deg, #1f1a3e 0%, #15102a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 16px 30px 16px;
    box-shadow: inset 0 10px 20px rgba(255, 255, 255, 0.05);
}

.controls-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 16px;
    align-items: center;
}

/* Control Labels */
.control-label {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8px;
}

/* Joystick Styling */
.joystick-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.joystick-base {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #3a3266 0%, #17122e 70%, #0d0a1b 100%);
    border: 4px solid #110b29;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5),
                inset 0 2px 5px rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.joystick-stick {
    width: 16px;
    height: 16px;
    background: #0d0a1b;
    border-radius: 50%;
    position: relative;
    cursor: grab;
    transition: transform 0.1s ease-out;
    touch-action: none;
}

.joystick-stick::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 4px;
    width: 8px;
    height: 35px;
    background: linear-gradient(90deg, #777 0%, #bbb 50%, #555 100%);
    border-radius: 4px;
    transform-origin: bottom center;
    box-shadow: 0 4px 5px rgba(0,0,0,0.3);
}

.joystick-knob {
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 8px 8px, #ff3366, #b3002d 70%, #66001a 100%);
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: -6px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4),
                0 0 10px rgba(255, 0, 127, 0.4),
                inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.joystick-stick:active {
    cursor: grabbing;
}

/* Action Buttons Container */
.action-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arcade-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    position: relative;
    cursor: pointer;
    background: #0d0a1b;
    padding: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
    outline: none;
    touch-action: none;
}

.arcade-btn .btn-inner {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    transition: transform 0.05s ease, box-shadow 0.05s ease;
}

/* Red Button (FIRE) */
.arcade-btn.btn-red .btn-inner {
    background: radial-gradient(circle at 12px 12px, #ff3b30 0%, #a30f0f 70%, #5c0505 100%);
    box-shadow: 0 3px 0 #4a0303,
                0 0 8px rgba(255, 59, 48, 0.4),
                inset 0 2px 3px rgba(255, 255, 255, 0.3);
}

.arcade-btn.btn-red:active .btn-inner {
    transform: translateY(3px);
    box-shadow: 0 0px 0 #4a0303,
                0 0 12px rgba(255, 59, 48, 0.8),
                inset 0 1px 2px rgba(0,0,0,0.5);
}

/* Blue Button (BOMB) */
.arcade-btn.btn-blue .btn-inner {
    background: radial-gradient(circle at 12px 12px, #00f0ff 0%, #007ba3 70%, #00475c 100%);
    box-shadow: 0 3px 0 #003647,
                0 0 8px rgba(0, 240, 255, 0.4),
                inset 0 2px 3px rgba(255, 255, 255, 0.3);
}

.arcade-btn.btn-blue:active .btn-inner {
    transform: translateY(3px);
    box-shadow: 0 0px 0 #003647,
                0 0 12px rgba(0, 240, 255, 0.8),
                inset 0 1px 2px rgba(0,0,0,0.5);
}

/* Admin Buttons (Coin / Start) */
.admin-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    border-left: 2px dashed rgba(255, 255, 255, 0.08);
    padding-left: 12px;
}

.admin-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arcade-admin-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #0d0a1b;
    position: relative;
    cursor: pointer;
    padding: 3px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.4);
    outline: none;
}

.arcade-admin-btn .admin-inner {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 0.05s ease, box-shadow 0.05s ease;
}

/* Yellow Button (COIN) */
.arcade-admin-btn.btn-yellow .admin-inner {
    background: radial-gradient(circle at 6px 6px, #ffcc00 0%, #b38f00 70%, #665200 100%);
    box-shadow: 0 2px 0 #3d3100,
                0 0 5px rgba(255, 204, 0, 0.3),
                inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.arcade-admin-btn.btn-yellow:active .admin-inner {
    transform: translateY(2px);
    box-shadow: 0 0px 0 #3d3100,
                0 0 8px rgba(255, 204, 0, 0.7),
                inset 0 1px 1px rgba(0,0,0,0.5);
}

/* Green Button (START) */
.arcade-admin-btn.btn-green .admin-inner {
    background: radial-gradient(circle at 6px 6px, #00ff66 0%, #00b347 70%, #006629 100%);
    box-shadow: 0 2px 0 #003d18,
                0 0 5px rgba(0, 255, 102, 0.3),
                inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.arcade-admin-btn.btn-green:active .admin-inner {
    transform: translateY(2px);
    box-shadow: 0 0px 0 #003d18,
                0 0 8px rgba(0, 255, 102, 0.7),
                inset 0 1px 1px rgba(0,0,0,0.5);
}

/* Responsive Arcade Cabinet */
@media (max-width: 600px) {
    .arcade-cabinet {
        width: 100%;
        max-width: 440px;
    }
    
    .controls-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
    }
    
    .admin-buttons-container {
        border-left: none;
        border-top: 2px dashed rgba(255, 255, 255, 0.08);
        padding-left: 0;
        padding-top: 16px;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
}

/* --- CONFIGURATOR INTERACTIVE LIVE PREVIEW --- */
.config-summary-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.colors-grid, .prints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
    margin-top: 10px;
}

.color-option, .print-option {
    background-color: var(--bg-surface-alt);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.color-option:hover, .print-option:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.color-option.active, .print-option.active {
    border-color: var(--primary);
    background-color: rgba(255, 0, 127, 0.05);
}

.color-preview, .print-preview {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.color-name, .print-name {
    font-size: 0.8rem;
    font-weight: 600;
}

.cabinet-preview-box {
    padding: 30px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
    text-align: center;
    width: 100%;
}

.cabinet-preview-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

/* Photorealistic Cabinet Swap Preview Box */
.preview-cabinet {
    width: 260px;
    height: 380px;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
    transition: transform var(--transition-normal), background-image 0.25s ease-in-out;
}

.preview-cabinet:hover {
    transform: translateY(-6px);
}

/* Dynamic color tinting overlay (subtle tint matching selected paint option) */
.preview-cabinet::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 12px;
    background-color: var(--cabinet-color, transparent);
    mix-blend-mode: color;
    opacity: 0.18;
    transition: background-color var(--transition-fast);
}

/* Locking styles when Stickers print is active */
.disabled-options {
    pointer-events: none;
    user-select: none;
}

.option-locked {
    opacity: 0.35;
    filter: grayscale(0.5);
    cursor: not-allowed !important;
}

.retro-locked h3:nth-of-type(1)::after,
.retro-locked h3:nth-of-type(2)::after {
    content: ' (блокируется этим принтом)';
    font-size: 0.75rem;
    font-weight: normal;
    color: var(--primary);
    opacity: 0.85;
    margin-left: 8px;
    text-transform: none;
}
