/* ==========================================
   GAME CITY 3D - FIXED STYLES
   ========================================== */

:root {
    --gc-primary: #6366f1;
    --gc-secondary: #06b6d4;
    --gc-accent: #f43f5e;
    --gc-dark: #0f172a;
    --gc-dark-light: #1e293b;
    --gc-text: #f8fafc;
    --gc-text-muted: #94a3b8;
    --perspective: 1000px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* HERO SECTION - FIXED */
.gc-hero-3d {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    display: flex;
    align-items: center;
    perspective: var(--perspective);
    isolation: isolate;
}

.gc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(244, 63, 94, 0.1) 0%, transparent 40%);
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* FLOATING SHAPES - FIXED: უკანა პლანზე, ტექსტის უკან */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.shape {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
    animation: float 6s ease-in-out infinite;
    will-change: transform;
    user-select: none;
}

.shape-1 { top: 20%; left: 10%; animation-delay: 0s; }
.shape-2 { top: 60%; right: 15%; animation-delay: 2s; }
.shape-3 { bottom: 20%; left: 20%; animation-delay: 4s; }
.shape-4 { top: 30%; right: 30%; animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* HERO CONTENT - FIXED: მაღალი z-index */
.gc-hero-content-3d {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 100px 20px;
    transform-style: preserve-3d;
}

.gc-badge-3d {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--gc-primary);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* TITLE - FIXED: 3D ეფექტი გაუქმებული მობილურზე */
.gc-title-3d {
    font-size: clamp(48px, 10vw, 100px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.2em;
}

.word-game {
    color: white;
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.3),
        0 3px 5px rgba(0,0,0,.2),
        0 5px 10px rgba(0,0,0,.25),
        0 10px 10px rgba(0,0,0,.2),
        0 20px 20px rgba(0,0,0,.15);
}

.word-city {
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.5));
}

.gc-subtitle-3d {
    font-size: clamp(18px, 3vw, 22px);
    color: var(--gc-text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.highlight-text {
    color: white;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gc-primary), var(--gc-secondary));
    border-radius: 3px;
    animation: line-grow 1s ease forwards 1s;
    transform-origin: left;
}

@keyframes line-grow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* BUTTONS */
.gc-hero-buttons-3d {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.gc-btn-3d {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.gc-btn-primary-3d {
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    color: white;
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.5);
}

.gc-btn-primary-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px -10px rgba(99, 102, 241, 0.6);
}

.gc-btn-secondary-3d {
    background: rgba(255,255,255,0.05);
    color: var(--gc-text);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.gc-btn-secondary-3d:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.2);
}

/* STATS - FIXED */
.gc-stats-3d {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item-3d {
    text-align: center;
    padding: 25px;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    min-width: 140px;
    transform: translateZ(0);
}

.stat-item-3d:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px -20px rgba(99, 102, 241, 0.3);
}

.stat-icon-3d {
    font-size: 32px;
    margin-bottom: 10px;
}

.stat-number-3d {
    display: block;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label-3d {
    font-size: 13px;
    color: var(--gc-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* SCROLL HINT */
.gc-scroll-hint-3d {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    z-index: 10;
}

.mouse-3d {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    position: relative;
    background: rgba(255,255,255,0.05);
}

.wheel {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gc-primary);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; top: 10px; }
    50% { opacity: 0.3; top: 20px; }
}

/* SECTIONS */
.gc-section-3d {
    padding: 100px 0;
    position: relative;
    background: var(--gc-dark);
    perspective: var(--perspective);
}

.gc-zones-3d {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
}

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

.gc-section-tag-3d {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: var(--gc-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.gc-section-title-3d {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--gc-text);
    line-height: 1.2;
}

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

/* ZONES GRID */
.gc-zones-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gc-zone-card-3d {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    transform-style: preserve-3d;
}

.gc-zone-card-3d:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}

.gc-zone-card-3d.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border-color: rgba(99, 102, 241, 0.3);
    transform: scale(1.05);
    box-shadow: 0 30px 60px -20px rgba(99, 102, 241, 0.3);
}

@media (max-width: 768px) {
    .gc-zone-card-3d.featured {
        transform: scale(1);
    }
}

.vip-badge-3d {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px -5px rgba(251, 191, 36, 0.4);
}

.zone-icon-3d {
    margin-bottom: 30px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto;
    border: 2px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.gc-zone-card-3d:hover .icon-wrapper {
    transform: scale(1.1);
    border-color: var(--gc-primary);
}

.vip-pulse {
    animation: vip-glow 3s infinite;
}

@keyframes vip-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
    50% { box-shadow: 0 0 30px 10px rgba(251, 191, 36, 0.2); }
}

.gc-zone-title-3d {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gc-text);
}

.gc-zone-price-3d {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.gc-zone-price-3d .currency {
    font-size: 24px;
    color: var(--gc-secondary);
    font-weight: 600;
}

.gc-zone-price-3d .amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--gc-text);
    line-height: 1;
}

.gc-zone-price-3d .period {
    font-size: 18px;
    color: var(--gc-text-muted);
    align-self: flex-end;
    margin-bottom: 10px;
}

.gc-zone-features-3d {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    padding: 0;
}

.gc-zone-features-3d li {
    padding: 10px 0;
    color: var(--gc-text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.gc-zone-features-3d li:hover {
    color: var(--gc-text);
    padding-left: 5px;
}

.check-3d {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--gc-primary), var(--gc-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.zone-extra-3d {
    background: rgba(255,255,255,0.05);
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    color: var(--gc-text-muted);
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.05);
}

.zone-extra-3d.highlight {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.gc-btn-zone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: var(--gc-text);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.gc-btn-zone:hover {
    background: var(--gc-primary);
    border-color: var(--gc-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.5);
}

.vip-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-color: transparent;
    color: #000;
}

/* GAMES SECTION */
.games-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card-3d {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border-top: 3px solid var(--card-color);
}

.game-card-3d:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
}

.game-icon-3d {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 15px;
}

.game-card-3d h4 {
    color: var(--gc-text);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.game-genre-3d {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BOOKING SECTION */
.gc-booking-3d {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.gc-booking-wrapper-3d {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .gc-booking-wrapper-3d {
        padding: 30px 20px;
    }
}

.booking-header-3d {
    text-align: center;
    margin-bottom: 40px;
}

.booking-title-3d {
    font-size: 32px;
    font-weight: 800;
    color: var(--gc-text);
    margin-bottom: 10px;
}

.booking-title-3d .gradient {
    background: linear-gradient(135deg, var(--gc-primary), var(--gc-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-subtitle-3d {
    color: var(--gc-text-muted);
    font-size: 16px;
}

.gc-form-3d {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-3d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row-3d {
        grid-template-columns: 1fr;
    }
}

.form-group-3d {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-3d label {
    color: var(--gc-text-muted);
    font-size: 14px;
    font-weight: 500;
}

.form-group-3d input,
.form-group-3d select {
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: 0.3s;
    outline: none;
}

.form-group-3d input:focus,
.form-group-3d select:focus {
    border-color: var(--gc-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.checkbox-group {
    justify-content: flex-end;
}

.checkbox-wrapper-3d {
    display: block;
    position: relative;
    cursor: pointer;
    width: 100%;
}

.checkbox-wrapper-3d input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-tile {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: 0.3s;
}

.checkbox-wrapper-3d input:checked + .checkbox-tile {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--gc-primary);
}

.checkbox-icon {
    font-size: 24px;
}

.checkbox-label {
    color: var(--gc-text);
    font-weight: 600;
}

/* PRICE BOX */
.price-box-3d {
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 25px;
    margin-top: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--gc-text-muted);
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-row.discount {
    color: var(--gc-accent);
    font-weight: 600;
}

.price-total-3d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 10px;
    border-top: 2px solid rgba(255,255,255,0.1);
}

.total-label {
    font-size: 18px;
    color: var(--gc-text-muted);
    font-weight: 600;
}

.total-amount {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gc-primary), var(--gc-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gc-btn-submit-3d {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gc-primary) 0%, var(--gc-secondary) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.gc-btn-submit-3d:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.5);
}

.gc-btn-submit-3d.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ALERT */
.gc-alert-3d {
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    display: none;
    font-weight: 600;
    animation: alert-slide 0.3s ease;
}

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

.gc-alert-3d.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.gc-alert-3d.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* CONTACT SECTION */
.gc-contact-3d {
    background: linear-gradient(180deg, var(--gc-dark) 0%, #020617 100%);
}

.contact-grid-3d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .contact-grid-3d {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.section-header-3d {
    margin-bottom: 40px;
}

.contact-list-3d {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item-3d {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.contact-item-3d:hover {
    background: rgba(255,255,255,0.06);
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.3);
}

.contact-icon-3d {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gc-primary), var(--gc-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-content-3d h4 {
    font-size: 16px;
    color: var(--gc-text);
    margin-bottom: 5px;
}

.contact-content-3d p {
    color: var(--gc-text-muted);
    font-size: 15px;
}

.contact-map-3d {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.map-card-3d {
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.5);
}

.map-card-3d iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.5) brightness(0.8);
    transition: 0.3s;
}

.map-card-3d:hover iframe {
    filter: grayscale(0) brightness(1);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .gc-hero-content-3d {
        padding: 80px 20px;
    }
    
    .gc-title-3d {
        font-size: 42px;
    }
    
    .gc-stats-3d {
        gap: 15px;
    }
    
    .stat-item-3d {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number-3d {
        font-size: 28px;
    }
    
    .gc-zones-grid-3d {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .games-grid-3d {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-grid-3d {
        grid-template-columns: 1fr;
    }
    
    .contact-map-3d {
        height: 300px;
    }
    
    .floating-shapes {
        display: none;
    }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}