:root { --primary: #FF6B6B; --dark: #0f0f13; --light: #ffffff; --soft: #f8f9fa; --shadow: 0 10px 30px rgba(0,0,0,0.08); }
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { width: 100%; height: 100%; }
body { font-family: 'Outfit', sans-serif; background: var(--soft); color: var(--dark); overflow-x: hidden; }
body.locked { overflow: hidden; position: fixed; width: 100%; } /* Mobilde kaymayı önler */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.dot { color: var(--primary); }

/* === PRELOADER === */
#preloader { position: fixed; top:0; left:0; width:100%; height:100%; background: var(--light); z-index: 9999; display:flex; align-items:center; justify-content:center; transition:0.5s; }
.brand-loader { font-size: 3rem; font-weight:900; }
.progress-track { width:150px; height:4px; background:#eee; margin:15px auto; border-radius:4px; overflow:hidden; }
.progress-bar { width:50%; height:100%; background:var(--primary); animation: load 1s infinite alternate; }
@keyframes load { from{transform:translateX(-100%)} to{transform:translateX(200%)} }

/* === INTRO (MASAÜSTÜ VARSAYILAN) === */
#intro-layer { position:fixed; top:0; left:0; width:100%; height:100vh; background: var(--dark); z-index:5000; color:var(--light); display:flex; flex-direction:column; align-items:center; justify-content:center; transition:0.8s cubic-bezier(0.7,0,0.3,1); }
#intro-layer.slide-up { transform: translateY(-100%); }
.spot-light { position:absolute; width:500px; height:500px; border-radius:50%; filter:blur(150px); opacity:0.4; }
.spot-1 { background:#6c5ce7; top:-10%; left:-10%; } .spot-2 { background:var(--primary); bottom:-10%; right:-10%; }

.intro-content-wrapper { text-align:center; z-index:10; transform:translateY(-30px); }
.intro-title { font-size: 6rem; font-weight:900; line-height:1; margin-bottom:10px; }
.intro-subtitle { font-size: 1.5rem; opacity:0.8; margin-bottom:50px; font-weight:300; }

.countdown-grid { display:flex; gap:25px; justify-content:center; margin-bottom:60px; }
.time-unit { background:rgba(255,255,255,0.05); padding:25px 35px; border-radius:20px; min-width:110px; border:1px solid rgba(255,255,255,0.1); backdrop-filter:blur(10px); }
.time-unit span { display:block; font-size:3.5rem; font-weight:800; line-height:1; }
.time-unit label { font-size:0.8rem; opacity:0.6; letter-spacing:2px; font-weight:700; display:block; margin-top:5px; }
.time-unit.active { border-color:var(--primary); color:var(--primary); }

.btn-mega { background:var(--light); color:var(--dark); border:none; padding:22px 60px; border-radius:100px; font-size:1.2rem; font-weight:800; cursor:pointer; transition:0.3s; display:flex; align-items:center; gap:15px; margin:0 auto; box-shadow:0 10px 30px rgba(255,255,255,0.1); }
.btn-mega:hover { transform:scale(1.05); background:var(--primary); color:var(--light); }

.ticker-bar-fixed { position:absolute; bottom:0; left:0; width:100%; background:var(--primary); padding:15px 0; overflow:hidden; z-index:20; border-top:1px solid rgba(255,255,255,0.2); }
.ticker-move { display:flex; white-space:nowrap; animation:scroll 30s linear infinite; }
.ticker-move span { margin:0 30px; font-weight:800; color:#fff; font-size:1.1rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* === ANA ARAYÜZ (MASAÜSTÜ) === */
#main-interface { display:none; opacity:0; transition:1s; padding-bottom: 60px; }
#main-interface.visible { display:block; opacity:1; }

.navbar { position:sticky; top:0; z-index:100; background:rgba(255,255,255,0.95); backdrop-filter:blur(10px); padding:15px 0; border-bottom:1px solid #eee; }
.nav-flex { display:flex; justify-content:space-between; align-items:center; }
.nav-brand { font-size:1.8rem; font-weight:800; }
.nav-center-switch { background:#f1f3f5; padding:5px; border-radius:30px; display:flex; gap:5px; }
.switch-item { border:none; background:transparent; padding:10px 25px; border-radius:25px; font-weight:600; cursor:pointer; transition:0.3s; display:flex; gap:8px; align-items:center; color:#666; }
.switch-item.active { background:var(--light); color:var(--dark); box-shadow:0 2px 10px rgba(0,0,0,0.05); }
.nav-actions { display:flex; gap:10px; align-items:center; }
.btn-tr { background:#f1f3f5; border:none; padding:8px 15px; border-radius:20px; display:flex; align-items:center; gap:5px; font-weight:700; cursor:pointer; }
.btn-tr img { width:20px; border-radius:50%; }
.btn-outline { border:2px solid var(--dark); background:transparent; padding:8px 20px; border-radius:25px; font-weight:700; cursor:pointer; }
.btn-solid { background:var(--dark); color:var(--light); border:none; padding:10px 25px; border-radius:25px; font-weight:700; cursor:pointer; }

.view-panel { display:none; }
.view-panel.active { display:block; animation:fadeIn 0.5s; }
@keyframes fadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

.hero-header { height:500px; position:relative; display:flex; align-items:center; justify-content:center; text-align:center; background:#000; margin-bottom:50px; }
.hero-bg { position:absolute; top:0; left:0; width:100%; height:100%; background:url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?w=1600') center/cover; opacity:0.6; }
.hero-container { position:relative; z-index:2; color:var(--light); }
.hero-container h1 { font-size:3.5rem; font-weight:800; margin-bottom:20px; }
.mega-search { background:var(--light); padding:10px; border-radius:50px; display:flex; width:100%; max-width:600px; margin:0 auto; box-shadow:0 20px 60px rgba(0,0,0,0.3); }
.mega-search i { padding:0 20px; color:#ccc; display:flex; align-items:center; }
.mega-search input { border:none; flex:1; outline:none; font-size:1.1rem; }
.mega-search button { background:var(--primary); color:var(--light); border:none; padding:0 40px; border-radius:40px; font-weight:700; cursor:pointer; }

.section { padding:50px 0; }
.bg-soft { background:#f1f3f5; }
.scroll-row { display:flex; gap:25px; overflow-x:auto; padding:10px 5px; scrollbar-width:none; -webkit-overflow-scrolling: touch; }
.cat-card { text-align:center; cursor:pointer; flex-shrink:0; }
.cat-card img { width:100px; height:100px; border-radius:30px; object-fit:cover; margin-bottom:10px; border:4px solid var(--light); box-shadow:var(--shadow); }
.cat-card span { font-weight:700; }

.sec-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; }
.sec-head h3 { font-size:2rem; font-weight:800; }
.sec-head a { color:var(--dark); text-decoration:none; font-weight:700; }

.venue-card { min-width:320px; background:var(--light); border-radius:20px; overflow:hidden; box-shadow:var(--shadow); flex-shrink:0; }
.v-img { height:220px; background-size:cover; }
.v-info { padding:20px; }
.v-info h4 { font-size:1.2rem; font-weight:800; margin-bottom:5px; }

.grid-layout { display:grid; grid-template-columns:repeat(auto-fill, minmax(320px, 1fr)); gap:30px; }

.main-footer { background:var(--dark); padding:60px 0 30px; color:var(--light); margin-top:60px; }
.footer-flex { display:flex; justify-content:space-between; align-items:center; margin-bottom:40px; }
.f-brand h2 { font-size:2rem; font-weight:800; }
.f-social i { font-size:1.5rem; margin-left:20px; cursor:pointer; }
.f-copy { text-align:center; border-top:1px solid rgba(255,255,255,0.1); padding-top:30px; opacity:0.5; }

.map-frame { height:85vh; border-radius:20px; overflow:hidden; box-shadow:var(--shadow); }
#fullMap { width:100%; height:100%; }

.modal-overlay { position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.8); z-index:6000; display:none; align-items:center; justify-content:center; backdrop-filter:blur(5px); padding: 20px; }
.modal-overlay.active { display:flex; }
.modal-dialog { background:var(--light); width:100%; max-width:500px; border-radius:25px; overflow:hidden; position:relative; animation:popUp 0.3s ease; max-height: 90vh; overflow-y: auto; }
@keyframes popUp { from{transform:scale(0.9)} to{transform:scale(1)} }
.modal-close { position:absolute; top:20px; right:20px; width:40px; height:40px; background:var(--light); border-radius:50%; border:none; cursor:pointer; z-index:10; box-shadow:var(--shadow); }
.modal-hero { height:250px; background-size:cover; }
.modal-content { padding:30px; }
.btn-action-full { width:100%; background:var(--primary); color:var(--light); border:none; padding:18px; border-radius:15px; font-weight:800; margin-top:20px; cursor:pointer; }

/* =========================================
   === MOBİL UYUMLULUK (CAN KURTARAN) ===
   ========================================= */
@media (max-width: 768px) {
    /* INTRO MOBİL */
    .intro-title { font-size: 3.5rem; }
    .intro-subtitle { font-size: 1.2rem; padding: 0 20px; }
    .countdown-grid { gap: 10px; }
    .time-unit { padding: 15px 20px; min-width: 75px; }
    .time-unit span { font-size: 2rem; }
    .time-unit label { font-size: 0.7rem; }
    .btn-mega { padding: 18px 40px; font-size: 1rem; width: 85%; justify-content: center; }
    .ticker-bar-fixed { padding: 10px 0; }
    .ticker-move span { font-size: 0.9rem; margin: 0 15px; }

    /* NAVBAR MOBİL */
    .nav-flex { flex-direction: column; gap: 15px; }
    .nav-actions { width: 100%; justify-content: center; flex-wrap: wrap; }
    .desktop-only { display: none; } /* Mobilde yer kaplamasın diye gizledik */
    
    /* HERO MOBİL */
    .hero-header { height: 400px; }
    .hero-container h1 { font-size: 2.2rem; }
    .mega-search { flex-direction: column; padding: 15px; border-radius: 25px; }
    .mega-search i { display: none; }
    .mega-search input { text-align: center; margin-bottom: 10px; }
    .mega-search button { width: 100%; padding: 12px 0; }

    /* KARTLAR VE GRID MOBİL */
    .scroll-row { padding-left: 20px; /* Mobilde kenardan taşma hissi */ }
    .venue-card { min-width: 280px; }
    .grid-layout { grid-template-columns: 1fr; /* Tek kolon */ padding: 0 20px; }
    
    /* FOOTER MOBİL */
    .footer-flex { flex-direction: column; text-align: center; gap: 30px; }
    
    /* MODAL MOBİL */
    .modal-dialog { max-height: 85vh; }
    .modal-hero { height: 200px; }
}