/* ==========================================================================
   CSS CUSTOM PROPERTIES & THEME SYSTEM
   ========================================================================== */
:root {
    --bg-dark: #040d08;
    --bg-lounge: radial-gradient(circle at 50% 50%, #0c2f1f 0%, #040e09 100%);
    --card-bg: rgba(12, 35, 24, 0.5);
    --card-border: rgba(255, 255, 255, 0.06);
    --card-border-hover: rgba(0, 230, 118, 0.25);
    
    --text-primary: #f0f7f3;
    --text-secondary: #9cbdae;
    
    --color-green: #00e676;
    --color-green-glow: rgba(0, 230, 118, 0.25);
    --color-gold: #ffc400;
    --color-gold-glow: rgba(255, 196, 0, 0.35);
    --color-red: #ff3d00;
    --color-spade: #1a1a1a;
    
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   RESET & SYSTEM STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: -webkit-fill-available;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    background-image: var(--bg-lounge);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #0d3826;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-green);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* ==========================================================================
   AMBIENT FLOATING BACKGROUND
   ========================================================================== */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-tile, .floating-card {
    position: absolute;
    opacity: 0.12;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
    animation: floatParticle 22s infinite linear alternate;
    pointer-events: none;
}

@keyframes floatParticle {
    0% {
        transform: translateY(110vh) translateX(0) rotate(0deg) scale(0.8);
    }
    100% {
        transform: translateY(-20vh) translateX(50px) rotate(360deg) scale(1.2);
    }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(4, 13, 8, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1.5px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--color-green), #00b0ff);
    border-radius: 10px;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
    color: #040d08;
    animation: pulseIcon 3s infinite alternate;
}

.logo-text span {
    color: var(--color-gold);
    text-shadow: 0 0 8px var(--color-gold-glow);
}

/* Nav Menu & Switcher Styling */
.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-green);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0.1rem 0.3rem;
}

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

.lang-btn.active {
    color: var(--color-gold);
    text-shadow: 0 0 8px var(--color-gold-glow);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    user-select: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* ==========================================================================
   MAIN HERO CONTENT
   ========================================================================== */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
}

.hero-section {
    padding: 3rem 0;
}

.badge-container {
    margin-bottom: 1.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 196, 0, 0.1);
    border: 1px solid rgba(255, 196, 0, 0.3);
    color: var(--color-gold);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--color-gold-glow);
    animation: subtlePulse 2s infinite alternate;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 230, 118, 0.25));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 3rem auto;
}

/* ==========================================================================
   COUNTDOWN TIMER
   ========================================================================== */
.countdown-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem 2.5rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 75px;
}

.countdown-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
    font-weight: 600;
}

.countdown-separator {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-green);
    opacity: 0.8;
    transform: translateY(-8px);
    animation: blinkSeparator 1s infinite;
}



/* ==========================================================================
   DOWNLOAD BADGES
   ========================================================================== */
.badges-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge-store {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    min-width: 200px;
    text-align: left;
}

.badge-store:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.store-icon {
    font-size: 2.2rem;
    color: var(--text-primary);
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.store-main {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

/* ==========================================================================
   GAMES PREVIEW SECTION
   ========================================================================== */
.games-section {
    padding: 5rem 0 3rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-green), transparent);
}

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

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-bounce);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--card-border-hover);
    box-shadow: 0 20px 40px rgba(0, 230, 118, 0.08);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(0, 230, 118, 0.08), transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.game-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.card-okey-icon {
    background: linear-gradient(135deg, #ffc400, #ff6f00);
    box-shadow: 0 10px 20px rgba(255, 196, 0, 0.25);
    color: #fff;
}

.card-101-icon {
    background: linear-gradient(135deg, #00e676, #00b0ff);
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.25);
    color: #040d08;
}

.card-batak-icon {
    background: linear-gradient(135deg, #e040fb, #651fff);
    box-shadow: 0 10px 20px rgba(224, 64, 251, 0.25);
    color: #fff;
}

.game-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.game-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: auto;
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 3;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: left;
    margin-bottom: 3rem;
}

.footer-grid a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-grid a:hover {
    color: var(--color-green);
}

.copyright-text {
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.maker-credit {
    font-size: 0.8rem;
    opacity: 0.4;
}

.accent-heart {
    color: var(--color-red);
    animation: heartBeat 1.5s infinite;
}



/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes pulseIcon {
    0% {
        box-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
    }
    100% {
        box-shadow: 0 0 25px rgba(0, 230, 118, 0.7);
        transform: scale(1.05);
    }
}

@keyframes subtlePulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
    }
}

@keyframes blinkSeparator {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes toastIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes toastOut {
    to {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* Entrance Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: viewIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.25s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.55s; }
.fade-in:nth-child(5) { animation-delay: 0.7s; }

@keyframes viewIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   LANGUAGE TOGGLE RULE
   ========================================================================== */
body.lang-tr [lang="en"] {
    display: none !important;
}
body.lang-en [lang="tr"] {
    display: none !important;
}

/* ==========================================================================
   NEW HERO BUTTONS
   ========================================================================== */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-green) 0%, #00b0ff 100%);
    color: #040d08;
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.2);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 230, 118, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.about-text:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--text-primary);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition-bounce);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-border-hover);
    box-shadow: 0 15px 30px rgba(0, 230, 118, 0.08);
}

.service-icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem auto;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(0, 230, 118, 0.06);
    border: 1px solid rgba(0, 230, 118, 0.15);
    color: var(--color-green);
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.1);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-detail-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 196, 0, 0.08);
    border: 1px solid rgba(255, 196, 0, 0.2);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 196, 0, 0.05);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

a.contact-value:hover {
    color: var(--color-green);
    text-shadow: 0 0 10px var(--color-green-glow);
}

/* ==========================================================================
   SUB PAGES (PRIVACY & TERMS)
   ========================================================================== */
.policy-page {
    padding: 4rem 0 6rem 0;
    flex: 1;
    z-index: 2;
    position: relative;
}

.back-btn-container {
    max-width: 900px;
    margin: 0 auto 2rem auto;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-back:hover {
    color: var(--color-green);
    transform: translateX(-5px);
}

.policy-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 4rem 3.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    margin: 0 auto;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
}

.policy-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.policy-date {
    color: var(--color-gold);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.policy-body h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--color-green);
    padding-left: 0.75rem;
}

.policy-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-body p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.policy-body ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-body li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    position: relative;
}

.policy-body li::before {
    content: "•";
    color: var(--color-green);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .games-section {
        padding: 4rem 0 2rem 0;
    }

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

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

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        margin-bottom: 2rem;
    }
    
    .countdown-wrapper {
        padding: 1.25rem 1.75rem;
        gap: 1rem;
        border-radius: 18px;
        margin-bottom: 2rem;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-num {
        font-size: 2.2rem;
    }
    
    .countdown-separator {
        font-size: 2rem;
    }
    

    
    .badges-group {
        gap: 1rem;
    }
    
    .badge-store {
        min-width: 180px;
        padding: 0.6rem 1.2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        padding: 2rem 1.5rem;
    }

    /* Mobile Hamburger Menu */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: rgba(4, 13, 8, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        padding: 4rem 2rem;
    }
    
    .nav-menu.open {
        right: 0;
    }

    /* Hamburger Open Animation */
    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

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

    .policy-card {
        padding: 2.5rem 1.5rem;
    }

    .about-content {
        padding: 2.5rem 1.5rem;
    }

    .contact-detail-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .countdown-wrapper {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }
    
    .countdown-item {
        min-width: 45px;
    }
    
    .countdown-num {
        font-size: 1.75rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        transform: translateY(-4px);
    }
    
    .badges-group {
        flex-direction: column;
        align-items: center;
    }
    
    .badge-store {
        width: 100%;
        max-width: 250px;
    }
}
