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

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #c71585;
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --dark-bg: #0a0e27;
    --darker-bg: #050816;
    --light-text: #ffffff;
    --gray-text: #b4b4b4;
    --card-bg: rgba(255, 255, 255, 0.05);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-4);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--gray-text);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.lang-btn:hover {
    color: var(--light-text);
    background: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.lang-divider {
    color: var(--gray-text);
    font-weight: 300;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.retro-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10%, 10%) scale(1.1); }
}

.hero-content {
    text-align: center;
    z-index: 100;
    animation: fadeInUp 1s ease;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.glitch {
    position: relative;
    animation: glitchText 3s infinite;
}

@keyframes glitchText {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
    96% { transform: translate(-2px, -2px); }
    98% { transform: translate(2px, 2px); }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-4);
    color: var(--light-text);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 100;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--light-text);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--light-text);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollDown {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* ========== SECTIONS ========== */
section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-4);
    margin: 0 auto;
    border-radius: 10px;
}

/* ========== ABOUT SECTION ========== */
.about {
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

.founder-link {
    color: var(--light-text);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.founder-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.founder-link::after {
    content: '🔗';
    font-size: 0.8em;
    margin-left: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.founder-link:hover::after {
    opacity: 1;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ========== PRODUCTS SECTION ========== */
.games {
    background: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

/* Single column for old games-grid class if still used */
.games-grid {
    display: grid;
    gap: 3rem;
}

.game-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.game-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.game-image .game-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Icon-based game image styling */
.game-image-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2332 0%, #0f1621 100%);
    padding: 3rem;
}

.game-image-icon img {
    width: 60%;
    height: auto;
    max-width: 280px;
    object-fit: contain;
    border-radius: 22%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-content {
    padding: 2rem;
    display: grid;
    grid-template-rows: auto 1fr auto;
    flex: 1;
    gap: 1rem;
    align-items: start;
}

.game-header {
    display: block;
}

.game-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.game-price {
    background: var(--gradient-4);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.game-price.free-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation: pulse-glow 2s ease-in-out infinite;
}

.game-price.premium-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    animation: pulse-glow 2s ease-in-out infinite;
}

.game-price.wishlist-badge {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    animation: pulse-glow-wishlist 2s ease-in-out infinite;
}

@keyframes pulse-glow-wishlist {
    0%, 100% {
        box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    }
}

.game-description {
    color: var(--gray-text);
    line-height: 1.8;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 107, 53, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.game-footer {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.release-date {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.steam-btn {
    border-color: #00adee;
}

.steam-btn:hover {
    background: rgba(0, 173, 238, 0.1);
    border-color: #00adee;
}

.google-btn img,
.apple-btn img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.google-btn:hover img,
.apple-btn:hover img {
    transform: scale(1.05);
}

/* Coming Soon Badge */
.store-btn.coming-soon {
    position: relative;
    opacity: 0.7;
    cursor: not-allowed;
}

.store-btn.coming-soon:hover {
    transform: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.coming-soon-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    animation: bounce-badge 2s ease-in-out infinite;
}

@keyframes bounce-badge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Web Page Link */
.web-page-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(79, 70, 229, 0.15) 100%);
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 50px;
    color: #a78bfa;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.web-page-link:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25) 0%, rgba(79, 70, 229, 0.25) 100%);
    border-color: rgba(124, 58, 237, 0.6);
    color: #c4b5fd;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
}

.web-page-link svg {
    flex-shrink: 0;
}

/* ========== MUSIC SECTION ========== */
.music {
    background: transparent;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
}

.music-card {
    width: 100%;
    max-width: 400px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.music-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.music-card iframe {
    display: block;
    border-radius: 12px;
}

/* Center single music card */
.music-grid:has(.music-card:only-child) {
    grid-template-columns: 1fr;
    justify-items: center;
}

/* Center two music cards */
.music-grid:has(.music-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 850px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .music-grid {
        grid-template-columns: 1fr;
    }

    .music-card {
        max-width: 100%;
    }
}

/* ========== CONTACT SECTION ========== */
.contact {
    background: transparent;
}

/* Quote Form Section */
.quote-form-wrapper {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.quote-form-wrapper:hover {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

.quote-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.quote-form-header h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-form-header p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.quote-form-header .privacy-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 1rem;
}

/* Form Styles */
.quote-form {
    width: 100%;
}

.form-row {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--light-text);
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--light-text);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

/* Select dropdown options styling - dark background */
.form-group select option {
    background: #1a1a2e;
    color: var(--light-text);
    padding: 12px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.budget-wrap {
    display: flex;
    gap: 12px;
    align-items: center;
}

.budget-wrap select {
    max-width: 120px;
    flex-shrink: 0;
}

.budget-wrap input {
    flex: 1;
}

.form-verification input {
    max-width: 200px;
}

/* Form Helper & Error Messages */
.helper {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.error-msg {
    display: none;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #ff6b6b;
    font-weight: 500;
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
    border-color: #ff6b6b;
}

.form-group input[aria-invalid="true"] ~ .error-msg,
.form-group textarea[aria-invalid="true"] ~ .error-msg {
    display: block;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    margin-top: 1.5rem;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

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

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success & Fail Messages */
.form-success,
.form-fail {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    line-height: 1.6;
}

.form-success {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.form-fail {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.form-fail a {
    color: #ef4444;
    text-decoration: underline;
    font-weight: 600;
}

.form-fail a:hover {
    color: #ff6b6b;
}

/* Honeypot (Hidden) - Completely invisible */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    pointer-events: none !important;
    display: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .quote-form-wrapper {
        padding: 1.5rem 1rem;
        margin: 0 1rem 4rem 1rem;
    }

    .quote-form-header {
        margin-bottom: 2rem;
    }

    .quote-form-header h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .quote-form-header p {
        font-size: 0.95rem;
    }

    .quote-form-header .privacy-note {
        font-size: 0.8rem;
    }

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

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .form-row {
        gap: 1.25rem;
        margin-bottom: 0;
    }

    .budget-wrap {
        flex-direction: row;
        gap: 8px;
    }

    .budget-wrap select {
        max-width: 90px;
        font-size: 16px;
    }

    .budget-wrap input {
        font-size: 16px;
    }

    .form-verification input {
        max-width: 150px;
        font-size: 16px;
    }

    .helper {
        font-size: 0.8rem;
    }

    .btn-submit {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .quote-form-wrapper {
        padding: 1.25rem 0.85rem;
        margin: 0 0.5rem 3rem 0.5rem;
        border-radius: 16px;
    }

    .quote-form-header h3 {
        font-size: 1.3rem;
    }

    .quote-form-header p {
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 11px 12px;
    }

    .budget-wrap {
        gap: 6px;
    }

    .budget-wrap select {
        max-width: 80px;
        padding: 11px 8px;
    }
}

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

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.02);
}

.contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-link.linkedin {
    color: #0077b5;
    border-color: #0077b5;
}

.social-link.instagram {
    color: #e4405f;
    border-color: #e4405f;
}

.social-link.steam {
    color: #00adee;
    border-color: #00adee;
}

.social-link.google-play {
    color: #34a853;
    border-color: #34a853;
}

.social-link.app-store {
    color: #0d7eff;
    border-color: #0d7eff;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Contact form removed - styles kept for potential future use */

/* ========== FOOTER ========== */
.footer {
    background: transparent;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--gray-text);
    margin: 0.5rem 0;
}

.footer-tagline {
    font-weight: 600;
    color: var(--secondary-color);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-content {
        gap: 1rem;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .lang-switcher {
        order: 1;
    }

    .hamburger {
        display: flex;
        order: 2;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

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

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .contact-info {
        padding: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Download buttons mobil düzen */
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .store-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .google-btn img,
    .apple-btn img {
        height: 35px;
    }

    .web-page-link {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    /* Retro canvas mobilde görünsün */
    .retro-canvas {
        opacity: 0.4;
        display: block;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .logo img {
        height: 40px;
    }

    section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .game-content {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Download buttons daha küçük mobilde */
    .download-buttons {
        gap: 0.75rem;
    }

    .store-btn {
        max-width: 220px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .google-btn img,
    .apple-btn img {
        height: 32px;
    }

    .steam-btn svg {
        width: 18px;
        height: 18px;
    }

    .web-page-link {
        font-size: 0.8rem;
        padding: 7px 14px;
    }

    .web-page-link svg {
        width: 14px;
        height: 14px;
    }
}

/* ========== SEO-SAFE REVEAL ANIMATIONS ========== */
/* Content is visible by default (for Google/bots). */
/* JS adds .reveal-ready, then .revealed on scroll. */
.reveal-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-ready.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation: body visible by default, fades in after JS load */
body {
    opacity: 1;
    transition: none;
}

body.loaded {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

/* Ensure bots always see content (no-JS fallback) */
noscript .noscript-notice {
    background: #ff6b35;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}