* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a2e;
    color: #cdb23c;
}

/* ── MAP CONTAINER ─────────────────────────────────────────── */
.container {
    position: relative;
    width: 100%;
    height: 50.45vw;
    background-image: url(arkaplan.GIF);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* ── HIDE CHECKBOXES ────────────────────────────────────────── */
input[type="checkbox"] {
    display: none;
}

/* ── PULSING BUTTON ─────────────────────────────────────────── */
.button {
    width: 2vw;
    height: 2vw;
    border-radius: 50%;
    background-color: #c6a43e;
    position: absolute;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.5s infinite;
    z-index: 10;
    transform: translate(-50%, -50%);
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(227, 185, 57, 0.7); }
    70%  { box-shadow: 0 0 0 1.5vw rgba(231, 197, 95, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 197, 95, 0); }
}

/* ── CONTENT POPUP ──────────────────────────────────────────── */
.content {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(37, 32, 23, 0.85);
    z-index: 100;
    overflow-y: auto;
    padding: 40px 20px;
    
}

/* ── CLOSE BUTTON ───────────────────────────────────────────── */
.close-btn {
    display: block;
    text-align: right;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    margin-bottom: 10px;
    user-select: none;
}

/* ── PRICE TABLE (3-column grid) ────────────────────────────── */
.price_table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── PACKAGE CARD ───────────────────────────────────────────── */
.package {
    background: #16213e;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.package h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #e7c55f;
    text-align: center;
}

.package li {
    list-style: none;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 8px;
}

.package img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
    max-height: 200px;
    object-fit: cover;
}

.package audio {
    width: 100%;
    margin: 10px 0;
}

.package a {
    display: block;
    text-align: center;
    margin-top: 14px;
    padding: 10px 16px;
    background: #e7c55f;
    color: #1a1a2e;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.package a:hover {
    background: #f0d98a;
}

/* ── FLAG RIBBON BANNERS ────────────────────────────────────── */

/* Turkish — red */
.banner {
    position: absolute;
    top: 18px; right: -32px;
    width: 130px;
    padding: 5px 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #c8102e 0%, #e63950 50%, #c8102e 100%);
    transform: rotate(45deg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Uzbek — blue/white/green (flag colors) */
.banner_tm {
    position: absolute;
    top: 18px; right: -32px;
    width: 130px;
    padding: 5px 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #1f68b8 0%, #1eb53a 100%);
    transform: rotate(45deg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* English — blue/red (UK colors) */
.banner3 {
    position: absolute;
    top: 18px; right: -32px;
    width: 130px;
    padding: 5px 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #012169 0%, #cf142b 50%, #012169 100%);
    transform: rotate(45deg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
/* ============================================================
   BUTTON POSITIONS — adjust left/top % to place on the map
   ============================================================ */
#b1  { position: absolute; left: 45%;   top: 61%; }   /* Aşgabat Hipodromu        */
#b2  { position: absolute; left: 68%;   top: 48%; }   /* Lenin Anıtı              */
#b3  { position: absolute; left: 47%;   top: 50%; }   /* Tren İstasyonu           */
#b4  { position: absolute; left: 70%;   top: 60%; }   /* Merv Türbesi             */
#b5  { position: absolute; left: 38%;   top: 44%; }   /* Türkmenbaşı Türbesi      */
#b6  { position: absolute; left: 37%;   top: 53%; }   /* Ulusal Tarih Müzesi      */
#b7  { position: absolute; left: 18%;    top: 44%; }   /* Avaza Sahili             */
#b8  { position: absolute; left: 43%;   top: 27%; }   /* Derweze Gaz Krateri      */
#b9  { position: absolute; left: 55%;   top: 23%; }   /* Daşoguz Yerel Tarih Mü. */
#b10 { position: absolute; left: 53%;   top: 58%; }   /* Ertuğrul Gazi Camii      */
#b11 { position: absolute; left: 60%;   top: 52%; }   /* Garashsyzlyk Binası      */
#b12 { position: absolute; left: 35%;   top: 34%; }   /* Gökdepe Saparmurat Cami  */
#b13 { position: absolute; left: 44%;   top: 19%; }   /* Görogly Parkı            */
#b14 { position: absolute; left: 25%;   top: 54%; }   /* Gypjak Camii             */
#b15 { position: absolute; left: 48%;   top: 39%; }   /* Halk Hakydasy            */
#b16 { position: absolute; left: 21%;   top: 64%; }   /* Köw-Ata Gölü             */
#b17 { position: absolute; left: 50%;   top: 13%; }   /* Köneürgenc               */
#b18 { position: absolute; left: 62%;   top: 63%; }   /* Seyit Jemâleddin Camii   */
#b19 { position: absolute; left: 55%;   top: 46%; }   /* Tarafsızlık Anıtı        */
#b20 { position: absolute; left: 56%;   top: 70%; }   /* Türkmen Milli Halı Müz.  */
#b21 { position: absolute; left: 30%;   top: 39%; }   /* Baht Köşkü               */
#b22 { position: absolute; left: 25%;   top: 35%; }   /* Ylym Anıtı               */

/* Show content when its checkbox is checked */
#input1:checked  ~ #content1,
#input2:checked  ~ #content2,
#input3:checked  ~ #content3,
#input4:checked  ~ #content4,
#input5:checked  ~ #content5,
#input6:checked  ~ #content6,
#input7:checked  ~ #content7,
#input8:checked  ~ #content8,
#input9:checked  ~ #content9,
#input10:checked ~ #content10,
#input11:checked ~ #content11,
#input12:checked ~ #content12,
#input13:checked ~ #content13,
#input14:checked ~ #content14,
#input15:checked ~ #content15,
#input16:checked ~ #content16,
#input17:checked ~ #content17,
#input18:checked ~ #content18,
#input19:checked ~ #content19,
#input20:checked ~ #content20,
#input21:checked ~ #content21,
#input22:checked ~ #content22 { display: block; }