/* =========================================
   HARDWARE SIMULATOR - FULLY RESPONSIVE CSS
   %100 Hatasız, Mobil Uyumlu, Optimize Edilmiş
   ========================================= */

/* =========================================
   FIXED FONT DECLARATION
   ========================================= */
body, button, input, select, textarea {
    font-family: 'Libre Baskerville', Baskerville, Georgia, serif !important;
}

/* =========================================
   DESIGN SYSTEM - CSS VARIABLES
   ========================================= */
:root {
    /* Brand Colors */
    --primary: #5468FF;
    --primary-dark: #3d52d5;
    --primary-light: #7d8bff;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.6);
    --text-quaternary: rgba(255, 255, 255, 0.5);

    /* Background Colors */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #1a1a1a;
    --bg-overlay: rgba(0, 0, 0, 0.28);
    --bg-overlay-strong: rgba(0, 0, 0, 0.75);
    --bg-overlay-light: rgba(0, 0, 0, 0.3);

    /* Border Colors */
    --border-primary: rgba(255, 255, 255, 0.08);
    --border-secondary: rgba(255, 255, 255, 0.12);
    --border-tertiary: rgba(255, 255, 255, 0.15);

    /* Spacing System */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 40px;
    --spacing-3xl: 60px;
    --spacing-4xl: 80px;
    --spacing-5xl: 120px;
    --spacing-6xl: 160px;

    /* Container */
    --container-max-width: 1400px;
    --container-padding: 40px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 30px;
    --radius-full: 50px;
    --radius-circle: 50%;

    /* Font Sizes - Desktop */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-md: 1.0625rem;    /* 17px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.75rem;      /* 28px */
    --text-2xl: 2rem;        /* 32px */
    --text-3xl: 2.5rem;      /* 40px */

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(84, 104, 255, 0.4);
    --shadow-lg: 0 15px 40px rgba(84, 104, 255, 0.6);
    --shadow-xl: 0 20px 60px rgba(84, 104, 255, 0.3);

    /* Z-index Scale */
    --z-header: 1000;
    --z-dropdown: 1001;
    --z-modal: 9999;
    --z-overlay: 100;
}

/* =========================================
   GLOBAL STYLES & RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: #7a7a7a var(--bg-primary);
    scrollbar-width: thin;
}

body {
    overflow-x: hidden;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

/* =========================================
   SCROLLBAR STYLING
   ========================================= */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: #7a7a7a;
    border-radius: var(--radius-sm);
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: #9a9a9a;
}

/* =========================================
   CONTAINER SYSTEM
   ========================================= */
.container,
.game-container,
.about-container,
.support-container,
.contact-container,
.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: var(--bg-overlay);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-primary);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px var(--container-padding);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* Logo - RESPONSIVE FIXED */
.logo {
    background: transparent;
    padding: 0;
    border: none;
    flex-shrink: 0;
}

.logo img {
    height: 45px;
    width: auto;
    cursor: pointer;
    transition: all var(--transition-smooth);
    margin-top: 11.5px;
    margin-left: -100px;
}

.logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    margin-left: 25px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all var(--transition-smooth);
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-smooth);
}

.nav-menu a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-left: auto;
    flex-shrink: 0;
}

/* =========================================
   HAMBURGER MENU - FIXED
   ========================================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border: none;
    position: relative;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =========================================
   LANGUAGE SELECTOR
   ========================================= */
.language-selector {
    position: relative;
    display: inline-block;
    z-index: 1002;
}

.btn-language {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: var(--spacing-xs);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1003;
    min-width: 48px;
    min-height: 48px;
}

.btn-language:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.btn-language.active {
    background: rgba(255, 255, 255, 0.12);
}

.icon-language {
    width: 22px;
    height: 22px;
    display: block;
    opacity: 0.85;
    transition: opacity var(--transition-base);
    filter: brightness(0) invert(1);
    pointer-events: none;
}

.btn-language:hover .icon-language {
    opacity: 1;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    min-width: 160px;
    padding: 4px 0;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.95) translateY(-5px);
    pointer-events: none;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.language-dropdown.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

.language-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-item {
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.15s ease;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    display: block;
    user-select: none;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.language-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #5468FF;
    transform: scaleY(0);
    transition: transform 0.15s ease;
}

.language-item:hover,
.language-item:focus {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding-left: 20px;
    outline: none;
}

.language-item:hover::before,
.language-item:focus::before {
    transform: scaleY(1);
}

.language-item.selected {
    background: rgba(84, 104, 255, 0.1);
    color: #5468FF;
    font-weight: 600;
    padding-left: 20px;
}

.language-item.selected::before {
    transform: scaleY(1);
}

/* =========================================
   HERO SECTION - RESPONSIVE VIDEO FIXED
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--spacing-2xl);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
    filter: blur(2px);
}

@media (min-width: 1200px) {
    .hero-video {
        width: 1695px;
        height: auto;
        object-fit: contain;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--bg-overlay-light), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 var(--spacing-lg);
}

.hero-title {
    font-size: var(--text-3xl);
    font-weight: 400;
    margin-bottom: var(--spacing-xl);
    letter-spacing: 1px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.2s both;
    flex-wrap: wrap;
}

/* Hero Buttons */
.btn-hero {
    padding: 10px var(--spacing-lg);
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-2xl);
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    min-height: 48px;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: var(--radius-circle);
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn-hero > * {
    position: relative;
    z-index: 1;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

/* Download Button */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: var(--text-primary);
}

.btn-download:hover {
    background: var(--primary-dark);
    transform: translateY(-4px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

.btn-download .btn-text {
    display: inline-block;
}

.btn-download-arrow {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-download-arrow,
.btn-download-arrow path,
.btn-download-arrow svg {
    stroke: white !important;
    fill: none !important;
    color: white !important;
}

.btn-download:hover .btn-download-arrow {
    transform: translateX(5px);
}

.btn-download:hover .btn-download-arrow path {
    stroke: white !important;
}

/* Plans Button */
.btn-plans {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-plans:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
    backdrop-filter: blur(10px);
}

.btn-arrow-icon,
.btn-arrow-icon path,
.btn-arrow-icon svg {
    stroke: white !important;
    fill: none !important;
    color: white !important;
}

.btn-plans:hover .btn-arrow-icon path {
    stroke: white !important;
}

/* =========================================
   STEAM WIDGET SECTION - RESPONSIVE FIXED
   ========================================= */
.steam-widget-section {
    width: 100%;
    padding: 150px 0 80px 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 4;
}

.steam-widget-section .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.steam-widget-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.steam-widget-wrapper iframe {
    border-radius: var(--radius-lg);
    box-shadow: none;
    display: block;
    border: none;
    background: transparent;
    overflow: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    max-width: 100%;
}

.steam-widget-wrapper iframe::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* =========================================
   GAME SECTION - 360° PANORAMA
   ========================================= */
.game-section {
    padding: var(--spacing-4xl) 0 var(--spacing-6xl) 0;
    background: var(--bg-primary);
    position: relative;
    margin-top: 0;
    scroll-margin-top: 11px;
    scroll-padding-top: 80px;
}

.game-header {
    margin-bottom: var(--spacing-3xl);
    text-align: center;
}

.game-title {
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-align: center;
}

.game-description {
    max-width: 1200px;
    margin: var(--spacing-2xl) auto 0;
    text-align: center;
    font-size: var(--text-md);
    line-height: 1.8;
    color: var(--text-secondary);
    padding: 0 var(--container-padding);
}

.game-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(84, 104, 255, 0.4);
}

.game-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
}

/* =========================================
   PANORAMA VIEWER
   ========================================= */
#panorama-viewer {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(84, 104, 255, 0.3);
    /* ✅ MOBIL FIX: Box-sizing garantisi */
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

#panorama-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: opacity 0.5s ease;
}

#panorama-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(84, 104, 255, 0.2);
    border-top-color: #5468FF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

#loading-text {
    color: #5468FF;
    font-size: 16px;
    margin-bottom: 10px;
}

#loading-percent {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

#panorama-container {
    width: 100%;
    height: 100%;
    cursor: grab;
}

#panorama-container:active {
    cursor: grabbing;
}

#panorama-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
}

.panorama-info-box {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 8px;
    pointer-events: all;
    max-width: 220px;
}

.info-title {
    font-size: 13px;
    margin-bottom: 8px;
    color: #5468FF;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.info-location {
    font-size: 14px;
    margin: 0 0 10px 0;
    color: white;
}

.info-instructions {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 10px;
}

.info-instructions p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-instructions img {
    width: 14px;
    height: 14px;
    opacity: 1;
}

.instruction-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    opacity: 1;
}

#fullscreen-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.75);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

#fullscreen-btn:hover {
    background: rgba(84, 104, 255, 0.9);
    transform: scale(1.1);
}

#fullscreen-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* =========================================
   SUPPORT SECTION - ✅ DÜZELTİLDİ
   ========================================= */
.support-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-primary);
    position: relative;
    scroll-margin-top: 20px;
}

.support-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.support-title {
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.support-subtitle {
    font-size: var(--text-base);
    color: var(--text-tertiary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ✅ DÜZELTİLDİ: Container height artırıldı ve flex yapısı eklendi */
.form-wrapper {
    max-width: 550px;
    margin: 0 auto;
    background-color: rgba(10, 10, 10, 0.5);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-tertiary);
    box-shadow: 0 15px 50px rgba(84, 104, 255, 0.12);
    backdrop-filter: blur(5px);
    position: relative;
    /* ✅ YENİ: 600px'den 620px'e çıkarıldı */
    height: 620px;
    overflow: hidden;
    /* ✅ YENİ: Flex yapısı eklendi - içerik düzgün dağılsın */
    display: flex;
    flex-direction: column;
}

/* ✅ YENİ: Form'a flex-grow eklendi */
.support-form {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: #cccccc;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.support-form input[type="text"],
.support-form input[type="email"],
.support-form select,
.support-form textarea {
    width: 100%;
    padding: 10px var(--spacing-sm);
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-tertiary);
    border-radius: var(--radius-sm);
    color: #f0f0f0;
    font-size: 0.9rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    min-height: 48px;
}

.support-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23cccccc' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--spacing-sm) center;
    background-size: 14px;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(84, 104, 255, 0.4);
}

.support-form textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
}

/* ✅ YENİ: Submit button'u en alta yapıştır */
.form-submit {
    margin-top: auto;
    padding-top: var(--spacing-sm);
}

.btn-submit {
    width: 100%;
    padding: var(--spacing-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    background: var(--primary);
    border: none;
    border-radius: var(--radius-2xl);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-smooth);
    position: relative;
    min-width: 180px;
    min-height: 48px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 30px rgba(84, 104, 255, 0.5);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #999;
    transform: none;
}

.btn-loader {
    display: none;
}

.form-message {
    display: none;
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-lg);
    margin-top: 15px;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    animation: slideDown var(--transition-base);
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #e5e7eb;
}

.form-message .error-highlight {
    color: #ef4444;
    font-weight: 600;
}

.form-success-circle {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius-circle);
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInScale 0.6s ease forwards;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    cursor: pointer;
    z-index: 10;
}

.form-success-circle.show {
    display: flex;
}

.form-success-circle svg {
    width: 22px;
    height: 22px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-success-circle:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 8px 20px rgba(84, 104, 255, 0.5);
}

.support-form.hide-form > .form-group,
.support-form.hide-form > .form-submit {
    display: none;
}

/* =========================================
   CONTACT SECTION - VERTICAL LAYOUT
   ========================================= */
.contact-section {
    padding: 100px 0 80px 0;
    background: var(--bg-primary);
    position: relative;
    scroll-margin-top: 60px;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
    padding-top: 20px;
}

.contact-title {
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 2px;
    margin-bottom: var(--spacing-lg);
}

.contact-subtitle {
    font-size: var(--text-lg);
    color: var(--text-tertiary);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-5xl);
    max-width: 800px;
    margin: 0 auto;
}

.contact-email-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    text-align: center;
    width: 100%;
}

.contact-email-icon {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all var(--transition-base);
}

.contact-email-section:hover .contact-email-icon {
    opacity: 1;
    transform: scale(1.1);
}

.email-content {
    text-align: center;
}

.email-title {
    font-size: var(--text-md);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.email-value {
    margin: 0;
}

.email-value a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-lg);
    transition: all var(--transition-fast);
    position: relative;
    padding-bottom: 2px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
}

.email-value a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.email-value a:hover {
    color: var(--primary);
}

.email-value a:hover::after {
    width: 100%;
}

.social-media-section {
    text-align: center;
    width: 100%;
}

.social-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.social-icon-link {
    display: inline-flex;
    padding: 12px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
    position: relative;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
}

.social-icon-link::after {
    content: attr(title);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: rgba(0, 0, 0, 0.9);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
    z-index: 10;
}

.social-icon-link:hover {
    background: rgba(84, 104, 255, 0.15);
    border-color: var(--primary);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(84, 104, 255, 0.3);
}

.social-icon-link:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: block;
    transition: transform var(--transition-base), filter var(--transition-base);
}

.social-icon-link:hover .social-icon {
    transform: rotate(5deg);
    filter: brightness(1.2);
}

.contact-inline-grid {
    display: none !important;
}

.contact-item-inline {
    display: none !important;
}

.contact-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: var(--spacing-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-footer p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.site-footer {
    background-color: var(--bg-tertiary);
    color: #a0a0a0;
    padding: var(--spacing-lg) 0 var(--spacing-md) 0;
    font-size: var(--text-sm);
    font-weight: 500;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    height: 24px;
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    gap: 18px;
}

.footer-nav a {
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition-base);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer-nav a:hover {
    color: var(--text-primary);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-social a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: #a0a0a0;
    transition: fill var(--transition-base), transform var(--transition-base);
}

.footer-social a:hover svg {
    fill: var(--text-primary);
    transform: scale(1.1);
}

.footer-separator {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: var(--spacing-sm) 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    font-size: 11px;
}

.footer-legal p {
    color: #777;
}

.footer-back-to-top a {
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition-base);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer-back-to-top a:hover {
    color: var(--text-primary);
}

/* =========================================
   RESPONSIVE STYLES - TABLET (768px - 1024px)
   ✅ PANORAMA VIEWER HIZALAMA SORUNU DÜZELTİLDİ
   ========================================= */

/* ✅ YENİ: 803px-801px arası için özel fix */
@media (max-width: 803px) and (min-width: 801px) {
    .game-container {
        padding-left: 30px !important;
        padding-right: 30px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    #panorama-viewer {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
}

/* ✅ GÜNCELLENMIŞ: 800px ve altı için genel responsive kuralları */
@media (max-width: 800px) {
    :root {
        --container-padding: 30px;
    }

    .nav {
        padding: 8px 30px;
    }

    .logo img {
        margin-left: -50px;
    }

    .nav-menu {
        gap: 20px;
    }

    .steam-widget-section {
        padding: 120px 0 60px 0;
    }

    .form-wrapper {
        height: 600px;
    }

    /* ✅ GÜNCELLEME: Game container için padding */
    .game-container {
        padding-left: 30px;
        padding-right: 30px;
        margin-left: 0;
        margin-right: 0;
    }

    /* ✅ GÜNCELLEME: Panorama viewer için merkezi hizalama */
    #panorama-viewer {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        left: 0;
        right: 0;
        transform: none;
    }
}

/* ✅ GÜNCELLEME: 757px-768px arası için ek fix */
@media (max-width: 768px) and (min-width: 757px) {
    .game-container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    
    #panorama-viewer {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
}

/* ✅ YENİ: 764px ve altı için özel fix - sol boşluk sorunu */
@media (max-width: 764px) {
    .game-container {
        padding-left: 30px !important;
        padding-right: 30px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    #panorama-viewer {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        position: relative !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        box-sizing: border-box !important;
        -webkit-box-sizing: border-box !important;
        -moz-box-sizing: border-box !important;
    }
    
    /* ✅ MOBIL: Game container ekstra kurallar */
    .game-section .game-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        -webkit-box-sizing: border-box !important;
    }
}

/* =========================================
   RESPONSIVE STYLES - MOBILE (MAX 768px)
   ========================================= */
@media (max-width: 767px) {
    :root {
        --text-3xl: 2rem;
        --text-2xl: 1.75rem;
        --text-xl: 1.5rem;
        --text-lg: 1.125rem;
        --text-md: 1rem;
        --text-base: 0.9375rem;
        --text-sm: 0.875rem;
        --text-xs: 0.8125rem;
        --container-padding: 20px;
        --min-touch-target: 48px;
    }

    body {
        -webkit-tap-highlight-color: rgba(84, 104, 255, 0.2);
        touch-action: manipulation;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    img {
        image-rendering: -webkit-optimize-contrast;
    }

    /* Navigation - LOGO FIX */
    .nav {
        padding: 10px 20px;
    }

    .logo img {
        height: 32px;
        margin-left: 0;
        margin-top: 0;
    }

    .icon-language {
        width: 24px;
        height: 24px;
    }

    /* Hamburger Menu */
    .hamburger {
        display: flex;
    }

    /* Mobile Menu */
    .nav-menu {
        position: fixed;
        top: 58px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 58px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-2xl) var(--spacing-lg);
        gap: var(--spacing-2xl);
        transition: left var(--transition-smooth);
        z-index: 999;
        margin-left: 0;
    }

    .nav-menu.active {
        left: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu a {
        font-size: 1.125rem;
        text-align: center;
        padding: 15px 0;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Language Dropdown Mobile Fix */
    .language-dropdown {
        right: 0;
        left: auto;
    }

    /* Hero Section */
    .hero {
        height: 75vh;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-lg);
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }

    .btn-hero {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.875rem;
        gap: 10px;
    }

    .btn-download-arrow {
        width: 18px !important;
        height: 18px !important;
    }

    /* Steam Widget Mobile */
    .steam-widget-section {
        padding: 100px 0 60px 0;
    }

    .steam-widget-wrapper {
        padding: 0 20px;
    }

    .steam-widget-wrapper iframe {
        width: 100%;
        max-width: 100%;
        height: 190px;
    }

    /* Game Section */
    .game-section {
        padding: 60px 0 80px 0;
        margin-top: 0;
        scroll-margin-top: 10px;
    }

    .game-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
        letter-spacing: 0; 
        text-align: center; 
    }

    .game-description {
        font-size: 0.9375rem;
        padding: 0 20px;
        line-height: 1.7;
    }

    /* Panorama Viewer Mobile */
    #panorama-viewer {
        height: 350px;
        border-radius: 12px;
        margin: 0 20px;
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        left: 0;
        right: 0;
        position: relative;
        transform: none;
    }

    .panorama-info-box {
        padding: 10px 12px;
        max-width: 200px;
        top: 12px;
        left: 12px;
    }

    .info-title {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .info-icon {
        width: 14px;
        height: 14px;
    }

    .info-location {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .info-instructions p {
        font-size: 11px;
    }

    .instruction-icon {
        width: 12px;
        height: 12px;
    }

    #fullscreen-btn {
        width: 44px;
        height: 44px;
        bottom: 12px;
        right: 12px;
    }

    #fullscreen-btn img {
        width: 18px;
        height: 18px;
    }

    /* Support Section */
    .support-section {
        padding: 60px 0;
        scroll-margin-top: 10px;
    }

    .support-title {
        font-size: 1.75rem;
        letter-spacing: 0;
        text-align: center;
    }

    .support-subtitle {
        font-size: 0.9375rem;
        padding: 0 20px;
    }

    /* ✅ MOBILE İÇİN CONTAINER YÜKSEKLIĞI ARTTIRILDI */
    .form-wrapper {
        padding: 20px;
        margin: 0 20px;
        height: 660px;
    }

    .support-form input[type="text"],
    .support-form input[type="email"],
    .support-form select,
    .support-form textarea {
        min-height: 48px;
        font-size: 1rem;
        padding: 12px 15px;
    }

    .support-form textarea {
        min-height: 100px;
    }

    .support-form label {
        font-size: 0.875rem;
        margin-bottom: 8px;
    }

    .btn-submit {
        min-height: 48px;
        font-size: 0.875rem;
        padding: 14px 20px;
    }

    /* Contact Section */
    .contact-section {
        padding: 60px 0 80px 0;
        scroll-margin-top: 10px;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-subtitle {
        font-size: 0.9375rem;
        padding: 0 20px;
    }

    .contact-content-wrapper {
        gap: 60px;
        padding: 0 20px;
    }

    .contact-email-section {
        gap: 16px;
    }

    .contact-email-icon {
        width: 56px;
        height: 56px;
    }

    .email-title {
        font-size: 0.8125rem;
    }

    .email-value a {
        font-size: 1rem;
    }

    .social-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .social-icons-row {
        gap: 20px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon-link {
        padding: 10px;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-logo img {
        height: 28px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* =========================================
   RESPONSIVE STYLES - SMALL MOBILE (MAX 480px)
   ========================================= */
@media (max-width: 480px) {
    :root {
        --text-3xl: 1.75rem;
        --text-2xl: 1.5rem;
        --text-xl: 1.25rem;
        --container-padding: 16px;
    }

    .logo img {
        height: 28px;
    }

    .hero {
        height: 70vh;
    }

    .hero-title {
        font-size: 1.75rem;
        padding: 0 16px;
    }

    .hero-buttons {
        padding: 0 16px;
    }

    .btn-hero {
        font-size: 0.8125rem;
        padding: 12px 16px;
    }

    .steam-widget-wrapper iframe {
        height: 170px;
    }

    .game-title {
        font-size: 1.5rem;
        letter-spacing: 0;
        text-align: center; 
    }

    .game-description {
        font-size: 0.875rem;
        padding: 0 16px;
    }

    #panorama-viewer {
        height: 300px;
        margin: 0 16px;
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
        left: 0;
        right: 0;
        position: relative;
        transform: none;
    }

    .panorama-info-box {
        padding: 8px 10px;
        max-width: 180px;
        top: 10px;
        left: 10px;
    }

    .info-title {
        font-size: 11px;
    }

    .info-icon {
        width: 12px;
        height: 12px;
    }

    .info-location {
        font-size: 12px;
    }

    .info-instructions p {
        font-size: 10px;
    }

    #fullscreen-btn {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }

    #fullscreen-btn img {
        width: 16px;
        height: 16px;
    }

    .support-title {
        font-size: 1.5rem;
        letter-spacing: 0; 
        text-align: center;
    }

    .form-wrapper {
        padding: 18px;
        margin: 0 16px;
        height: 620px;
    }

    .support-form input,
    .support-form select,
    .support-form textarea {
        font-size: 0.9375rem;
        padding: 10px 12px;
    }

    .btn-submit {
        font-size: 0.8125rem;
        padding: 12px 16px;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-content-wrapper {
        gap: 48px;
        padding: 0 16px;
    }

    .contact-email-icon {
        width: 48px;
        height: 48px;
    }

    .email-title {
        font-size: 0.75rem;
    }

    .email-value a {
        font-size: 0.9375rem;
    }

    .social-title {
        font-size: 0.9375rem;
    }

    .social-icons-row {
        gap: 16px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon-link {
        padding: 8px;
    }

    .footer-logo img {
        height: 24px;
    }

    .footer-nav a {
        font-size: 0.8125rem;
    }

    .footer-bottom {
        font-size: 0.6875rem;
    }
}

/* =========================================
   LANDSCAPE ORIENTATION FIX
   ========================================= */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 12px;
    }

    .btn-hero {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    .nav-menu {
        height: 100vh;
        overflow-y: auto;
    }
}

/* =========================================
   ✅ UNIVERSAL FIX - 757-803px ARASI TÜM PANORAMA SORUNLARI
   ========================================= */
@media (min-width: 757px) and (max-width: 803px) {
    /* TÜM CONTAINER'LARIN PADDING'İNİ KONTROL ET */
    .game-container {
        padding-left: 30px !important;
        padding-right: 30px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* İÇERİK ELEMENTLERİNE PADDING EKLE */
    .game-header {
        padding: 0 30px !important;
    }

    .game-title {
        text-align: center !important;
        letter-spacing: 0 !important;
        padding: 0 !important;
    }

    .game-description {
        padding: 0 !important;
    }

    /* PANORAMA VIEWER - MUTLAK MERKEZİ HIZALAMA */
    #panorama-viewer {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }

    /* SUPPORT & CONTACT */
    .support-container,
    .contact-container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .support-title,
    .contact-title {
        text-align: center !important;
        letter-spacing: 0 !important;
    }

    .form-wrapper {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* =========================================
   YÜKSEK ÇÖZÜNÜRLÜK OPTİMİZASYONU
   ========================================= */

/* Full HD ve üzeri (1920px+) */
@media (min-width: 1920px) {
    .contact-section {
        padding: 120px 0 100px 0;
    }
    
    .contact-content-wrapper {
        max-width: 900px;
        gap: 80px;
    }
    
    .contact-email-section {
        gap: 24px;
    }
    
    .social-icons-row {
        gap: 48px;
    }
}

/* 2K/4K ekranlar için (2560px+) */
@media (min-width: 2560px) {
    .contact-section {
        padding: 150px 0 120px 0;
    }
    
    .contact-content-wrapper {
        max-width: 1000px;
        gap: 100px;
    }
    
    .contact-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .contact-subtitle {
        font-size: 1.375rem;
    }
    
    .email-title {
        font-size: 1.25rem;
    }
    
    .email-value a {
        font-size: 1.5rem;
    }
    
    .social-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon-link {
        padding: 14px;
    }
}

/* 4K+ Ultra-wide için (3840px+) */
@media (min-width: 3840px) {
    .contact-section {
        padding: 200px 0 150px 0;
    }
    
    .contact-content-wrapper {
        max-width: 1200px;
    }
    
    .contact-title {
        font-size: 3rem;
    }
}

/* =========================================
   HIGH DPI / RETINA DISPLAYS
   ========================================= */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .hero-video {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* =========================================
   PRINT STYLES
   ========================================= */
@media print {
    .header,
    .hero,
    .steam-widget-section,
    #panorama-viewer,
    .support-section,
    .footer-social,
    .hamburger {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .game-section,
    .contact-section {
        page-break-inside: avoid;
    }
}

/* =========================================
   ACCESSIBILITY IMPROVEMENTS
   ========================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Visible for Keyboard Navigation */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* =========================================
   MOBIL CİHAZLAR İÇİN ÖZEL KURALLAR
   iOS Safari ve Android Chrome Optimizasyonu
   ========================================= */

/* Touch Device Specific - Panorama Viewer */
@media (hover: none) and (pointer: coarse) {
    .game-container {
        padding-left: 30px !important;
        padding-right: 30px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        -webkit-box-sizing: border-box !important;
    }
    
    #panorama-viewer {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        -webkit-transform: none !important;
        position: relative !important;
        box-sizing: border-box !important;
        -webkit-box-sizing: border-box !important;
    }
}

/* iOS Safari Specific */
@supports (-webkit-touch-callout: none) {
    #panorama-viewer {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        left: 0 !important;
        right: 0 !important;
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
    }
    
    @media (max-width: 800px) {
        .game-container {
            padding-left: 30px !important;
            padding-right: 30px !important;
            -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
        }
        
        #panorama-viewer {
            width: 100% !important;
            margin: 0 auto !important;
        }
    }
}

/* Android Chrome Specific */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 800px) {
    .game-container {
        padding-left: 30px !important;
        padding-right: 30px !important;
        box-sizing: border-box !important;
    }
    
    #panorama-viewer {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        left: 0 !important;
        right: 0 !important;
    }
}

/* =========================================
   END OF RESPONSIVE CSS
   ========================================= */