@media (max-width: 600px) {
 .guide-wrapper {
 padding: 20px 15px; /* შიდა დაშორების შემცირება */
 border-radius: 20px; /* ოდნავ ნაკლები დამრგვალება მცირე ეკრანისთვის */
 }

 .steps-grid {
 grid-template-columns: 1fr; /* ერთ სვეტად განლაგება */
 gap: 10px; /* ბარათებს შორის მცირე მანძილი */
 }

 .step-card {
 display: flex; /* ჰორიზონტალური განლაგება მობილურზე */
 align-items: center;
 text-align: left;
 padding: 12px; /* ნაკლები padding ადგილის მოსაგებად */
 gap: 12px;
 }

 .step-icon {
 font-size: 24px; /* იკონკის ზომის შემცირება */
 margin-bottom: 0; /* ქვედა დაშორების მოხსნა */
 }

 .step-card h3 {
 font-size: 14px;
 margin: 0;
 }

 .step-card p {
 display: none; /* მობილურზე აღწერის ტექსტის დამალვა ადგილის ეკონომიისთვის */
 }
 
 .step-number {
 top: 5px;
 right: 5px;
 width: 20px;
 height: 20px;
 font-size: 10px;
 }
}

@media (max-width: 600px) {
 .container {
 margin: 10px auto; /* 40px-დან ვამცირებთ 10px-მდე */
 padding: 10px; /* გვერდითა დაშორებების შემცირება */
 gap: 15px; /* ბლოკებს შორის მანძილის შემცირება */
 }

 .title-section {
 padding: 30px 15px; /* 60px-დან ვამცირებთ 30px-მდე */
 margin-bottom: 20px;
 }
}


@media (max-width: 600px) {
 .messenger-float {
 bottom: 20px;
 right: 20px;
 width: 55px;
 height: 55px;
 }
 
 .messenger-icon {
 width: 30px;
 height: 30px;
 }
}

@media (max-width: 480px) {
 .accordion-content {
 grid-template-columns: 1fr !important; /* ერთი სვეტი */
 padding: 10px;
 }
 
 .ch-item {
 font-size: 14px;
 padding: 10px;
 }
}

@media (max-width: 600px) {
 .steps-grid {
 grid-template-columns: 1fr;
 gap: 10px;
 }
 
 .step-card {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 padding: 20px;
 }
}

@media (max-width: 480px) {
 .pricing-grid {
 grid-template-columns: 1fr; /* მობილურზე ყოველთვის ერთი სვეტი */
 gap: 15px;
 }
 
 .price-card {
 padding: 20px;
 }
 
 .price-value {
 font-size: 32px; /* ფასი უფრო პატარა შრიფტით */
 }
}

@media (max-width: 600px) {
 .container {
 width: 100%; /* ვიყენებთ სრულ სიგანეს */
 margin: 10px auto;
 padding: 10px; /* მცირე დაშორება კიდეებიდან */
 }
 
 .title-section h1 {
 font-size: 28px; /* უფრო კომპაქტური სათაური */
 }
}

.newsSwiper {
 width: 100%;
 padding-bottom: 20px;
}

.swiper-pagination-bullet {
 background: var(--accent-gold) !important; /* თქვენი ოქროსფერი ტონალობა */
 opacity: 0.5;
}

.swiper-pagination-bullet-active {
 opacity: 1;
 transform: scale(1.2);
}


@keyframes glow {
 0% {
 box-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
 transform: scale(1);
 }
 50% {
 box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4);
 transform: scale(1.02);
 }
 100% {
 box-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
 transform: scale(1);
 }
}

.btn-glow {
 animation: glow 2s infinite ease-in-out;
 background: rgba(255, 215, 0, 0.1) !important; /* მსუბუქი ოქროსფერი ტონალობა შიგნიდან */
 transition: all 0.3s ease;
 font-weight: bold !important;
}

.btn-glow:hover {
 animation: none;
 background: var(--accent-gold) !important;
 color: #000 !important;
 box-shadow: 0 0 30px var(--accent-gold);
}


.modal-overlay {
 display: none;
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.85);
 backdrop-filter: blur(10px);
 z-index: 10000;
 justify-content: center;
 align-items: center;
 padding: 20px;
}

.modal-content {
 background: rgba(15, 23, 42, 0.98);
 border: 1px solid var(--accent-gold);
 border-radius: 20px;
 max-width: 650px;
 width: 100%;
 max-height: 85vh;
 overflow-y: auto;
 padding: 35px;
 position: relative;
 box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.1);
}

.modal-header {
 color: var(--accent-gold);
 font-size: 24px;
 font-weight: 800;
 margin-bottom: 25px;
 text-align: center;
 text-transform: uppercase;
 letter-spacing: 1px;
 border-bottom: 2px solid rgba(255, 215, 0, 0.2);
 padding-bottom: 15px;
}

.modal-body p {
 color: #e2e8f0;
 font-size: 15px;
 line-height: 1.8;
 margin-bottom: 15px;
 display: flex;
 align-items: flex-start;
}

.modal-body p i {
 color: var(--accent-gold);
 margin-right: 12px;
 margin-top: 5px;
 font-size: 18px;
}

.close-modal {
 position: absolute;
 top: 15px;
 right: 20px;
 font-size: 30px;
 color: #94a3b8;
 cursor: pointer;
 transition: 0.3s;
}

.close-modal:hover {
 color: var(--accent-gold);
 transform: rotate(90deg);
}

/* სქროლბარის ლამაზი სტილი */
.modal-content::-webkit-scrollbar { width: 5px; }
.modal-content::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 10px; }

/* სიახლეების სექციის სტილი */
.news-column {
 display: flex;
 flex-direction: column;
 gap: 15px;
}

.news-card {
 background: rgba(255, 255, 255, 0.05);
 backdrop-filter: blur(15px);
 -webkit-backdrop-filter: blur(15px);
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 20px;
 padding: 20px;
 transition: all 0.4s ease;
 position: relative;
 overflow: hidden;
}

.news-card:hover {
 transform: translateX(10px); /* გვერდზე გაწევის ეფექტი */
 border-color: var(--accent-gold);
 background: rgba(255, 215, 0, 0.03);
 box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.news-badge {
 display: inline-block;
 background: var(--accent-red);
 color: #fff;
 font-size: 10px;
 font-weight: bold;
 padding: 3px 10px;
 border-radius: 50px;
 margin-bottom: 10px;
 text-transform: uppercase;
 letter-spacing: 1px;
}

.news-date {
 font-size: 12px;
 color: rgba(255, 255, 255, 0.5);
 float: right;
}

.news-title {
 font-size: 16px;
 font-weight: 600;
 color: var(--accent-gold);
 margin-bottom: 8px;
 display: block;
}

.news-text {
 font-size: 13px;
 color: #cbd5e0;
 line-height: 1.5;
 margin: 0;
}

/* Shine ეფექტი, როგორც სხვა ბარათებზე */
.news-card::after {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
 transition: 0.6s;
}

.news-card:hover::after {
 left: 100%;
}



/* Pricing Section Styling */
.pricing-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 25px;
 padding: 20px 0;
}

.price-card {
 background: rgba(255, 255, 255, 0.05);
 backdrop-filter: blur(15px);
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 25px;
 padding: 30px;
 text-align: center;
 transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 position: relative;
 overflow: hidden;
}

/* პრემიუმ (პოპულარული) პაკეტის გამოყოფა */
.price-card.featured {
 border-color: var(--accent-gold);
 background: rgba(255, 215, 0, 0.05);
 transform: scale(1.05);
}

.price-card.featured::after {
 content: "BEST VALUE";
 position: absolute;
 top: 25px;
 right: -30px;
 background: var(--accent-gold);
 color: #000;
 font-size: 10px;
 font-weight: bold;
 padding: 5px 40px;
 transform: rotate(45deg);
 z-index: 1;
 box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.price-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
 border-color: rgba(255, 255, 255, 0.3);
}

.price-title {
 font-size: 20px;
 color: var(--accent-gold);
 margin-bottom: 10px;
 text-transform: uppercase;
 letter-spacing: 1px;
}

.price-value {
 font-size: 40px;
 font-weight: 800;
 margin-bottom: 20px;
}

.price-value span {
 font-size: 16px;
 font-weight: normal;
 opacity: 0.7;
}

.price-features {
 list-style: none;
 padding: 0;
 margin: 0 0 25px 0;
 text-align: left;
}

.price-features li {
 padding: 10px 0;
 border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 font-size: 14px;
 display: flex;
 align-items: center;
 gap: 10px;
}

.price-features li::before {
 content: "✓";
 color: #2ecc71;
 font-weight: bold;
}



/* არხების ბლოკის სტილი შენი მუქი თემისთვის */
.accordion-content {
 display: none; /* JavaScript მართავს გამოჩენას */
 padding: 15px 10px;
 grid-template-columns: repeat(4, 1fr); /* არხები ორ სვეტად */
 gap: 12px;
 
 /* რეკომენდებული ფონი: უფრო მუქი და ბლურის ეფექტით */
 background: rgba(15, 23, 42, 0.6); 
 backdrop-filter: blur(10px); /* შუშის ეფექტი */
 -webkit-backdrop-filter: blur(10px);
 
 border-top: 1px solid rgba(255, 255, 255, 0.05); /* მსუბუქი გამყოფი ხაზი ზემოდან */
 border-radius: 0 0 20px 20px;
 animation: fadeIn 0.3s ease-out;
}

 .ch-item {
 display: flex;
 align-items: center;
 gap: 12px;
 padding: 12px;
 font-size: 14px;
 color: #ffffff;
 background: rgba(255, 255, 255, 0.03); /* თითქმის გამჭვირვალე */
 border: 1px solid rgba(255, 255, 255, 0.08);
 border-radius: 15px;
 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 cursor: pointer;
 position: relative;
 overflow: hidden;
}

.ch-item:hover {
 background: rgba(255, 215, 0, 0.1); /* ოქროსფერი ნათება შიგნიდან */
 border-color: rgba(255, 215, 0, 0.4); /* ოქროსფერი ჩარჩო */
 transform: translateY(-3px) scale(1.02); /* მცირედი წამოწევა */
 
 /* პრემიუმ Glow ეფექტი */
 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 
 0 0 15px rgba(255, 215, 0, 0.1);
}

/* ლოგოს სტილი არხის შიგნით */
.ch-logo {
 width: 30px;
 height: 30px;
 object-fit: contain;
 filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
 border-radius: 6px;
 background: rgba(0, 0, 0, 0.2);
 padding: 3px;
}

/* მცირე "არეკვლის" ეფექტი ჰოვერზე */
.ch-item::after {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
 transition: 0.5s;
}

.ch-item:hover::after {
 left: 100%;
}

 .ch-logo {
 width: 24px;
 height: 24px;
 object-fit: contain;
 background: rgba(255,255,255,0.1); /* ლოგოს პატარა ფონი უკეთესი ხილვადობისთვის */
 border-radius: 4px;
 padding: 2px;
 }

 .highlight-sport {
 border-left: 3px solid var(--accent-gold);
 background: rgba(255, 215, 0, 0.08);
 }

 /* მობილურზე ერთი სვეტი უკეთესია ხილვადობისთვის */
 @media (max-width: 480px) {
 .accordion-content {
 grid-template-columns: 1fr;
 }
 }

html {
 scroll-behavior: smooth;
}
#apps {
 scroll-margin-top: 20px;
}


/* გზამკვლევის სტილები */
.guide-wrapper {
 background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
 border-radius: 30px;
 padding: 30px 20px;
 border: 1px solid var(--glass-border);
 position: relative;
 box-shadow: 0 15px 35px rgba(0,0,0,0.4);
 margin-bottom: 10px;
}

.guide-header { text-align: center; margin-bottom: 25px; }
.guide-header h2 { color: var(--accent-gold); margin: 0; font-size: 24px; }
.guide-header p { color: #aaa; font-size: 14px; margin-top: 5px; }

.steps-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 15px;
}

.step-card {
 background: rgba(0, 0, 0, 0.3);
 padding: 20px 10px;
 border-radius: 20px;
 text-align: center;
 border: 1px solid rgba(255, 255, 255, 0.1);
 position: relative;
 transition: 0.3s;
}

.step-number {
 position: absolute;
 top: -10px;
 left: 10px;
 background: var(--accent-gold);
 color: #000;
 width: 24px;
 height: 24px;
 border-radius: 50%;
 font-weight: bold;
 font-size: 14px;
 display: flex;
 align-items: center;
 justify-content: center;
}

.step-icon { font-size: 28px; margin-bottom: 10px; }
.step-card h3 { font-size: 15px; margin: 5px 0; color: #fff; }
.step-card p { font-size: 11px; color: #888; margin-bottom: 15px; }

.step-link {
 display: inline-block;
 padding: 6px 12px;
 background: rgba(255,255,255,0.1);
 border-radius: 8px;
 color: var(--accent-gold);
 text-decoration: none;
 font-size: 12px;
 font-weight: 600;
 border: 1px solid var(--accent-gold);
}

.highlight-step {
 border-color: var(--accent-gold);
 background: rgba(255, 215, 0, 0.05);
}

/* მობილურზე რომ არ გაიჭყლიტოს */
@media (max-width: 600px) {
 .steps-grid {
 grid-template-columns: 1fr; /* მობილურზე ერთმანეთის ქვეშ */
 }
 .step-card {
 display: flex;
 align-items: center;
 text-align: left;
 padding: 15px;
 gap: 15px;
 }
 .step-icon { margin-bottom: 0; }
 .step-card p { margin-bottom: 0; }
 .step-link { margin-left: auto; }
}

 :root {
 --bg-color: #050a14;
 --card-bg: rgba(255, 255, 255, 0.07);
 --accent-gold: #ffd700;
 --accent-red: #ff3b30;
 --accent-purple: #9b59b6;
 --text-main: #ffffff;
 --glass-border: rgba(255, 255, 255, 0.15);
 }

 * { box-sizing: border-box; }

 body, html {
 margin: 0; padding: 0;
 background-color: var(--bg-color);
 background: radial-gradient(circle at top, #1a2a44 0%, #050a14 100%);
 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
 color: var(--text-main);
 overflow-x: hidden;
 min-height: 100vh;
 }



 .container {
 width: 95%;
 max-width: 900px;
 margin: 40px auto;
 display: flex;
 flex-direction: column;
 gap: 25px;
 position: relative;
 z-index: 10;
 }

 .header-wrapper { position: relative; width: 100%; margin-bottom: 10px; }
 .santa-hat { position: absolute; top: -25px; left: -10px; width: 60px; transform: rotate(-15deg); z-index: 11; font-size: 40px; }

 .header-img {
 width: 100%; border-radius: 24px; overflow: hidden;
 box-shadow: 0 0 30px rgba(255, 215, 0, 0.15); border: 1px solid var(--glass-border);
 }
 .header-img img { width: 100%; display: block; transition: transform 0.5s; }
 .header-img:hover img { transform: scale(1.02); }

 .title-section { text-align: center; margin-bottom: 10px; }
 .title-section h1 { 
 font-size: clamp(24px, 5vw, 42px);
 font-weight: 800; margin: 0;
 background: linear-gradient(to right, #fff, var(--accent-gold));
 -webkit-background-clip: text; -webkit-text-fill-color: transparent;
 }

 .grid-layout {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 20px;
 }

 .card {
 background: var(--card-bg); backdrop-filter: blur(15px);
 -webkit-backdrop-filter: blur(15px);
 border: 1px solid var(--glass-border); border-radius: 24px;
 padding: 25px; transition: all 0.3s ease; position: relative;
 }
 .card:hover { border-color: var(--accent-gold); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

 .card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
 .icon-box { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }

 .btn {
 display: block; text-decoration: none; padding: 15px; border-radius: 14px;
 text-align: center; font-weight: 700; font-size: 15px; transition: all 0.2s;
 margin-bottom: 12px;
 }

 .btn-gold { background: linear-gradient(45deg, #ffd700, #b8860b); color: #000; }
 .btn-gold:hover { filter: brightness(1.1); transform: scale(1.02); }
 .btn-dark { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid var(--glass-border); }
 .btn-dark:hover { background: rgba(255,255,255,0.1); }
 .btn-red { background: var(--accent-red); color: #fff; }
 .btn-purple { background: var(--accent-purple); color: #fff; }

 /* არხების სექციის სტილები */
 .channel-container { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
 
 .accordion-item {
 border-bottom: 1px solid rgba(255,255,255,0.05);
 padding-bottom: 5px;
 }

 .accordion-btn {
 cursor: pointer;
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 12px;
 border-radius: 12px;
 background: rgba(255, 255, 255, 0.03);
 font-size: 14px;
 text-transform: uppercase;
 color: var(--accent-gold);
 letter-spacing: 1px;
 transition: 0.3s;
 }

 .accordion-btn:hover { background: rgba(255, 215, 0, 0.1); }

 .accordion-content {
 display: none;
 padding: 15px 5px;
 flex-wrap: wrap;
 gap: 8px;
 animation: fadeIn 0.3s ease;
 }

 /* როცა აქტიურია */
 .accordion-item.active .accordion-content { display: flex; }
 .accordion-item.active .arrow { transform: rotate(180deg); }

 .arrow { transition: transform 0.3s; font-size: 10px; }

 .ch-item {
 background: rgba(255,255,255,0.05);
 border: 1px solid var(--glass-border);
 padding: 6px 12px;
 border-radius: 8px;
 font-size: 12px;
 color: #ddd;
 transition: 0.2s;
 }
 .ch-item:hover { background: rgba(255,215,0,0.1); border-color: var(--accent-gold); }
 .ch-item.highlight { border-color: #3498db; color: #fff; }

 .footer { text-align: center; padding: 40px; margin-top: 20px; }
 .footer .wish { color: var(--accent-gold); font-size: 18px; margin-bottom: 10px; font-weight: 600; letter-spacing: 1px; }

 @keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

 @media (max-width: 600px) {
 .container { margin: 20px auto; padding: 15px; }
 .grid-layout { grid-template-columns: 1fr; }
 }



/* --- ძველი .card-ის ნაცვლად ჩასვი ეს --- */
.card {
 background: rgba(255, 255, 255, 0.05);
 backdrop-filter: blur(15px);
 -webkit-backdrop-filter: blur(15px);
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 25px;
 padding: 25px;
 margin-bottom: 20px;
 transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 position: relative;
 overflow: hidden;
}

.card:hover {
 transform: translateY(-8px);
 background: rgba(255, 255, 255, 0.08);
 border-color: #ffd700; /* შენი საყვარელი ოქროსფერი */
 box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 
 0 0 15px rgba(255, 215, 0, 0.1);
}

.card::after {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
 transition: 0.6s;
}

.card:hover::after {
 left: 100%;
}
/* -------------------------------------- */

/* ნაბიჯების ბარათების ერთიანი სტილი */
.step-card {
 background: rgba(255, 255, 255, 0.05);
 backdrop-filter: blur(15px);
 -webkit-backdrop-filter: blur(15px);
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 25px;
 padding: 30px 20px;
 text-align: center;
 position: relative;
 transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 overflow: hidden; /* აუცილებელია Shine ეფექტისთვის */
}

/* Hover ეფექტი ნაბიჯებისთვის */
.step-card:hover {
 transform: translateY(-10px);
 background: rgba(255, 255, 255, 0.08);
 border-color: #ffd700; /* ოქროსფერი ჩარჩო */
 box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 
 0 0 20px rgba(255, 215, 0, 0.15);
}

/* Shine (გადარბენის) ეფექტი */
.step-card::after {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
 transition: 0.6s;
}

.step-card:hover::after {
 left: 100%;
}

/* მესამე (პრემიუმ) ბარათის განსაკუთრებული გამოყოფა */
.step-card.highlight-step {
 border-color: rgba(255, 215, 0, 0.4);
 background: rgba(255, 215, 0, 0.03);
}

/* ნაბიჯის ნომრების სტილი */
.step-number {
 position: absolute;
 top: 15px;
 right: 15px;
 font-size: 12px;
 font-weight: bold;
 color: #ffd700;
 opacity: 0.5;
 border: 1px solid rgba(255, 215, 0, 0.3);
 width: 24px;
 height: 24px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
}

/* იკონკების სტილი ბარათში */
.step-icon {
 font-size: 40px;
 margin-bottom: 15px;
 display: block;
 filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.title-section {
 text-align: center;
 padding: 60px 20px; /* ზედა და ქვედა დაშორება, რომ დამოუკიდებლად იდგეს */
 margin-bottom: 40px; /* დაშორება ქვედა სექციამდე */
 position: relative;
}

.title-section h1 {
 font-size: clamp(2rem, 5vw, 3.5rem); /* ზომა ადაპტირდება ეკრანზე */
 font-weight: 800;
 margin: 15px 0;
 background: linear-gradient(to right, #ffffff, #ffd700, #ffffff);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent; /* ტექსტი ხდება ოქროსფერი გრადიენტით */
 text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.title-section p {
 color: #cbd5e0;
 font-size: 20px;
 max-width: 600px;
 margin: 0 auto;
 opacity: 0.9;
}

/* პატარა "ბეიჯი" სათაურის ზემოთ */
.holiday-badge {
 display: inline-block;
 background: rgba(255, 59, 48, 0.15); /* მსუბუქი წითელი */
 color: #ff3b30;
 padding: 5px 15px;
 border-radius: 50px;
 font-size: 14px;
 font-weight: 600;
 border: 1px solid rgba(255, 59, 48, 0.3);
 margin-bottom: 10px;
 letter-spacing: 1px;
}

/* გამყოფი ხაზი ქვედა სექციასთან */
.title-divider {
 width: 80px;
 height: 4px;
 background: #ffd700;
 margin: 30px auto 0;
 border-radius: 2px;
 box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* Messenger Floating Button */
.messenger-float {
 position: fixed;
 bottom: 30px;
 right: 30px;
 width: 65px;
 height: 65px;
 background: linear-gradient(135deg, #0084FF 0%, #a334fa 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 10px 25px rgba(0, 132, 255, 0.3), 
 0 0 15px rgba(163, 52, 250, 0.2);
 z-index: 9999;
 transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 cursor: pointer;
 border: 1px solid rgba(255, 255, 255, 0.2);
 backdrop-filter: blur(10px);
}

.messenger-float:hover {
 transform: scale(1.1) translateY(-5px);
 box-shadow: 0 15px 30px rgba(0, 132, 255, 0.5), 
 0 0 20px rgba(255, 215, 0, 0.3);
 border-color: #ffd700; /* თქვენი საყვარელი ოქროსფერი */
}

/* პულსაციის ეფექტი ყურადღების მისაქცევად */
.messenger-float::before {
 content: '';
 position: absolute;
 width: 100%;
 height: 100%;
 background: inherit;
 border-radius: 50%;
 z-index: -1;
 animation: messenger-pulse 2s infinite;
 opacity: 0.5;
}

@keyframes messenger-pulse {
 0% { transform: scale(1); opacity: 0.5; }
 100% { transform: scale(1.6); opacity: 0; }
}

.messenger-icon {
 width: 35px;
 height: 35px;
 fill: white;
 filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

/* მობილურისთვის ზომის კორექტირება */
@media (max-width: 600px) {
 .messenger-float {
 bottom: 20px;
 right: 20px;
 width: 55px;
 height: 55px;
 }
}

/* კონტეინერის საერთო სტილი */
.guide-wrapper {
 background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
 border: 1px solid rgba(255, 255, 255, 0.1);
 backdrop-filter: blur(10px);
 border-radius: 24px;
 padding: 40px;
 position: relative;
 overflow: hidden;
}

/* LIVE ინდიკატორი ზედა კუთხეში */
.live-indicator {
 position: absolute;
 top: 20px;
 left: 20px;
 background: rgba(255, 59, 48, 0.15);
 color: #ff3b30;
 padding: 5px 12px;
 border-radius: 20px;
 font-size: 11px;
 font-weight: bold;
 letter-spacing: 1px;
 display: flex;
 align-items: center;
 gap: 6px;
 border: 1px solid rgba(255, 59, 48, 0.2);
}

.pulse-dot {
 width: 8px;
 height: 8px;
 background-color: #ff3b30;
 border-radius: 50%;
 box-shadow: 0 0 0 rgba(255, 59, 48, 0.4);
 animation: pulse 1.5s infinite;
}

@keyframes pulse {
 0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
 70% { box-shadow: 0 0 0 10px rgba(255, 59, 48, 0); }
 100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

@media (max-width: 768px) {
 /* კონტეინერის დაშორებების მინიმუმამდე დაყვანა */
 .steps-grid {
 grid-template-columns: 1fr !important;
 gap: 10px !important; /* მინიმალური დაშორება ბარათებს შორის */
 padding: 0 5px !important;
 }

 .step-card {
 display: flex !important;
 flex-direction: row !important; /* ელემენტები ერთ ხაზზე */
 align-items: center !important;
 justify-content: space-between !important;
 padding: 12px 15px !important; /* პატარა შიდა დაშორება */
 text-align: left !important;
 min-height: auto !important;
 }

 /* იკონკის დაპატარავება */
 .step-icon {
 margin: 0 15px 0 0 !important;
 flex-shrink: 0;
 }
 
 .step-icon svg {
 width: 30px !important; /* ზომის შემცირება */
 height: 30px !important;
 }

 /* ტექსტების ბლოკი */
 .step-card h3 {
 font-size: 14px !important;
 margin: 0 !important;
 white-space: nowrap; /* სათაური ერთ ხაზზე */
 }

 .step-card p {
 display: none !important; /* აღწერას მობილურზე ვმალავთ ადგილის მოსაგებად */
 }

 /* ნაბიჯის ნომრის დაპატარავება */
 .step-number {
 width: 18px !important;
 height: 18px !important;
 font-size: 10px !important;
 top: 5px !important;
 right: 5px !important;
 }

 /* ღილაკის მობილური ვერსია */
 .step-link {
 padding: 6px 15px !important; /* პატარა ღილაკი */
 font-size: 11px !important;
 margin-left: auto !important;
 border-radius: 8px !important; /* უფრო თანამედროვე ფორმა */
 }
}

/* მობილურის ვერსია - მაქსიმალური ოპტიმიზაცია */
@media (max-width: 768px) {
 .guide-wrapper {
 padding: 15px 10px !important; /* მინიმალური დაშორება */
 margin: 10px !important;
 }

 .steps-grid {
 display: flex !important;
 flex-direction: column !important;
 gap: 8px !important; /* ძალიან მცირე დაშორება ბარათებს შორის */
 }

 .step-card {
 display: flex !important;
 flex-direction: row !important; /* ელემენტები ერთ ხაზზე */
 align-items: center !important;
 justify-content: space-between !important;
 padding: 10px 15px !important;
 background: rgba(255, 255, 255, 0.05) !important;
 border-radius: 12px !important;
 border: 1px solid rgba(255, 255, 255, 0.1) !important;
 }

 .step-icon {
 font-size: 20px !important; /* პატარა და სუფთა იკონკა */
 margin-right: 12px !important;
 min-width: 25px;
 }

 .step-info {
 flex-grow: 1; /* ტექსტი იკავებს დარჩენილ ადგილს */
 text-align: left !important;
 }

 .step-info h3 {
 font-size: 14px !important;
 margin: 0 !important;
 color: #fff;
 }

 .step-info p {
 font-size: 11px !important;
 margin: 2px 0 0 0 !important;
 opacity: 0.6;
 display: block !important; /* ტექსტის პატარა აღწერა მაინც დარჩეს */
 }

 .step-link {
 padding: 6px 12px !important;
 font-size: 11px !important;
 background: #0084FF !important; /* შენი საიტის ფერი */
 color: #fff !important;
 border-radius: 6px !important;
 text-decoration: none;
 margin-left: 10px;
 white-space: nowrap;
 }
}

/* ოპტიმიზირებული პოპაპის სტილი */
#termsPopup {
 display: none;
 position: fixed;
 inset: 0;
 z-index: 10001;
 background: rgba(2, 6, 23, 0.96);
 padding: 10px;
 align-items: center;
 justify-content: center;
 font-family: sans-serif;
}

.popup-box {
 background: #0f172a;
 border: 1px solid rgba(56, 189, 248, 0.3);
 border-radius: 20px;
 max-width: 450px;
 width: 100%;
 max-height: 85vh;
 display: flex;
 flex-direction: column;
 overflow: hidden;
 box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.popup-header-fixed {
 padding: 15px;
 text-align: center;
 border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.popup-scroll-area {
 padding: 15px 20px;
 overflow-y: auto;
 flex-grow: 1;
 -webkit-overflow-scrolling: touch;
}

.popup-item {
 background: rgba(255, 255, 255, 0.03);
 padding: 12px;
 border-radius: 10px;
 margin-bottom: 10px;
 font-size: 13px;
 color: #cbd5e1;
 line-height: 1.5;
}

.popup-footer-fixed {
 padding: 15px 20px;
 background: #0f172a;
 border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.popup-accept-btn {
 background: #006AFF;
 color: white;
 width: 100%;
 padding: 14px;
 border-radius: 12px;
 font-weight: 800;
 cursor: pointer;
 border: none;
 text-transform: uppercase;
}