/* =========================
   COMPACT FOOTER STYLES
========================= */
.footer {
    padding: 20px 0 0 !important; /* კიდევ უფრო შევამცირეთ */
    background: #050914 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .flogo img {
    max-height: 25px !important; /* ლოგო უფრო კომპაქტურია */
    margin-bottom: 10px !important;
}

.footer .social-links {
    margin-bottom: 10px !important;
}

.footer .social-links li a i {
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    font-size: 13px !important;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s ease;
}

.footer .footer-menu {
    margin-top: 5px !important;  
    margin-bottom: 10px !important;
}

.footer .footer-menu li a {
    font-size: 12px !important; 
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer .copy-bg {
    padding: 10px 0 !important; /* ძალიან ვიწრო ზოლი ბოლოში */
    background: rgba(0, 0, 0, 0.5);
}

/* Top Header - მუდმივი ფიქსაცია */
.top-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001 !important; /* ყველაზე მაღალი ფენა */
    background: #2a0444 !important; /* Jugaro-ს მუქი იასამნისფერი */
    height: 40px !important;
    display: flex !important;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mainmenu-area {
    position: fixed !important;
    top: 40px !important;
    left: 0;
    width: 100%;
    z-index: 10000 !important;
    
    /* 0.2 ნიშნავს 20% სიძლიერის ფერს, რაც ძალიან გამჭვირვალეა */
    background-color: rgba(59, 6, 94, 0.2) !important; 
    
    /* Blur ეფექტი აუცილებელია, რომ ტექსტი იკითხებოდეს გამჭვირვალობისას */
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

/* სქროლვისას ოდნავ შევამუქოთ, რომ კონტენტს არ შეერიოს */
.header.nav-fixed .mainmenu-area {
    background-color: rgba(59, 6, 94, 0.6) !important;
    backdrop-filter: blur(20px);
}

/* კონტენტის დაშორება, რომ ჰედერებმა არ დაფაროს */
body {
    padding-top: 105px !important; /* 40px (top) + ~65px (main menu) */
}

/* =========================
   RIGHT CONTENT STYLES
========================= */

/* კონტეინერის სწორი განლაგება */
.right-content .right-list {
    display: flex !important;
    align-items: center !important;
    list-style: none !important;
    gap: 15px !important;
}

/* LOGIN ღილაკი - ჩარჩოთი */
.mybtn-login {
    background: transparent !important;
    border: 1px solid #f2c24f !important; /* ოქროსფერი ჩარჩო */
    color: #fff !important;
    padding: 6px 18px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: 0.3s !important;
}

.mybtn-login:hover {
    background: #f2c24f !important;
    color: #000 !important;
}

/* JOIN US ღილაკი - გრადიენტით */
.mybtn-register {
    background: linear-gradient(90deg, #ff9900 0%, #ff6600 100%) !important;
    border: none !important;
    color: #fff !important;
    padding: 7px 22px !important;
    border-radius: 20px !important; /* მომრგვალებული */
    font-size: 13px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3) !important;
    transition: 0.3s !important;
}

.mybtn-register:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5) !important;
}

/* ენის სელექტორი */
.language {
    background: transparent !important;
    color: #fff !important;
    border: none !important;
    font-size: 13px !important;
    cursor: pointer !important;
    outline: none !important;
}

.language option {
    background: #3b065e !important; /* მენიუს ფერი შიგნითაც რომ დარჩეს */
    color: #fff !important;
}

/* ზარის აიქონი (Notification) */
.right-list i.fa-bell {
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    cursor: pointer !important;
    transition: 0.3s !important;
}

.right-list i.fa-bell:hover {
    color: #f2c24f !important;
}

.modal-content {
    background: #1a0b2e !important;
    border: 1px solid #3b065e !important;
    border-radius: 20px !important;
    padding: 20px;
}

.input-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 12px 20px;
    border-radius: 10px;
    color: #fff !important;
    margin-bottom: 15px;
}

.input-field:focus {
    border-color: #f2c24f !important;
    outline: none;
}

.mybtn2 {
    background: linear-gradient(90deg, #ff9900 0%, #ff6600 100%) !important;
    border: none !important;
    padding: 12px;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.close {
    color: #fff !important;
    opacity: 0.8;
}

/* Slots Page - Compact Banner */
.slots-banner-new {
    margin-top: 105px; /* ჰედერის სიმაღლე */
    padding: 50px 0 !important; /* სიმაღლის განახევრება */
    background: linear-gradient(45deg, #1a0b2e 0%, #3b065e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* ჯეკპოტის პატარა ბეიჯი */
.jackpot-tag {
    background: rgba(242, 194, 79, 0.1);
    border: 1px solid rgba(242, 194, 79, 0.3);
    color: #f2c24f;
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.jackpot-tag i {
    margin-right: 6px;
}

.jackpot-tag span {
    color: #fff;
    margin-left: 5px;
}

/* ბანერის სათაური */
.banner-title-small {
    font-size: 28px !important; /* უფრო პატარა და მკვეთრი */
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.banner-desc-small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* მცურავი სურათის ანიმაცია */
.img-mini-float {
    max-height: 100px;
    filter: drop-shadow(0 0 15px rgba(242, 194, 79, 0.3));
    animation: miniFloat 4s ease-in-out infinite;
}

@keyframes miniFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* პროვაიდერების სექციის დაპატარავება */
.slots-page .game-play-section.pt-5 {
    padding-top: 30px !important;
}

.p-provider {
    font-size: 12px !important;
    padding: 6px 15px !important;
    border-radius: 4px !important;
}

/* Providers Inside Counter Box */
.p-provider {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.p-provider:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(242, 194, 79, 0.5);
}

.p-provider.active {
    background: #f2c24f !important;
    color: #000 !important;
    border-color: #f2c24f !important;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(242, 194, 79, 0.3);
}

/* Filter Card General Style */
.filter-card {
    transition: 0.3s;
    background: rgba(26, 11, 46, 0.4) !important;
}

.filter-card:hover {
    border-color: #f2c24f !important;
}

.slots-page main.game-play-section {
    margin-top: 30px !important;
}

/* Filters Section Slimming */
.compact-box {
    min-height: 50px !important; /* სიმაღლის მკვეთრი შემცირება */
    margin-bottom: 0 !important;
    background: rgba(26, 11, 46, 0.6) !important;
}

.p-provider {
    padding: 4px 12px !important; /* შიდა დაშორების დაპატარავება */
    font-size: 11px !important;    /* ტექსტის ზომა */
    letter-spacing: 0.5px;
}

/* Input & Select Slimming */
#slotSearch, #slotSort {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

#slotSearch::placeholder {
    font-size: 12px;
    opacity: 0.5;
}

/* MyBorder ეფექტის სინატიფე */
.filter-card .myborder {
    opacity: 0.4; /* ჩარჩოს ნათება უფრო რბილი გავხადოთ */
}

.filter-card:hover .myborder {
    opacity: 1;
}

/* მობილურზე დაშორებების გასწორება */
@media (max-width: 991px) {
    .pr-lg-2 {
        padding-right: 0 !important;
    }
}