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

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0a2e1a 0%, #0d4024 50%, #0f5228 100%);
    color: white;
    min-height: 100vh;
}

/* Header */
.header {
    background: rgba(10, 46, 26, 0.9);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 99999;
}

.logo {
    order: 1;
    display: flex;
    align-items: center;
        border-radius: 0 !important;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
        border-radius: 0 !important;

}

/* ========== ИСПРАВЛЕННЫЙ LANGUAGE SWITCHER ========== */
.language-switcher {
    position: relative !important;
    display: inline-block !important;
    z-index: 9999 !important; /* Увеличиваем */
    order: 2 !important;
}

.lang-current {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    user-select: none !important;
    min-width: 60px !important;
    justify-content: center !important;
    position: relative !important;
}

.lang-current:after {
    content: '▼' !important;
    font-size: 8px !important;
    transition: transform 0.2s ease !important;
    margin-left: 4px !important;
}

/* ВАЖНО: ДОБАВЛЯЕМ HOVER ДЛЯ LANG-CURRENT */
.lang-current:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(0, 255, 136, 0.5) !important;
}

.language-switcher.active .lang-current {
    background: rgba(0, 255, 136, 0.2) !important;
    border-color: #00ff88 !important;
}

.language-switcher.active .lang-current:after {
    transform: rotate(180deg) !important;
}
.lang-dropdown {
    position: absolute !important;
    top: calc(100% + 4px) !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(10, 46, 26, 0.98) !important;
    border: 2px solid #00ff88 !important;
    border-radius: 6px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(15px) !important;
    overflow: visible !important; /* Меняем с hidden */
    z-index: 99999 !important; /* Максимальный z-index */
    min-width: 80px !important;
    display: none !important;
    pointer-events: auto !important;
}

/* ПОКАЗЫВАЕМ DROPDOWN ТОЛЬКО КОГДА ACTIVE */
.language-switcher.active .lang-dropdown {
    display: block !important;
    animation: fadeInDown 0.2s ease !important;
}

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

.lang-option {
    display: block !important;
    padding: 12px 15px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: center !important;
    pointer-events: auto !important; /* Принудительно включаем */
    background: transparent !important;
    transition: all 0.15s ease !important;
    position: relative !important;
    z-index: 99999 !important;
}

.lang-option:last-child {
    border-bottom: none !important;
}

.lang-option:hover {
    background: #00ff88 !important;
    color: #0a2e1a !important;
}

.lang-option:active {
    background: #00cc6a !important;
    color: #0a2e1a !important;
    transform: scale(0.95) !important;
}

/* Tablet optimization */
@media (min-width: 768px) {
    .lang-current {
        padding: 10px 16px !important;
        font-size: 13px !important;
        min-width: 70px !important;
    }
    
    .lang-option {
        padding: 12px 16px !important;
        font-size: 13px !important;
    }
}

/* Desktop optimization */
@media (min-width: 1024px) {
    .lang-current {
        padding: 12px 20px !important;
        font-size: 14px !important;
        min-width: 80px !important;
    }
    
    .lang-option {
        padding: 14px 20px !important;
        font-size: 14px !important;
    }
}



.nav-menu {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    order: 3;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    order: 4;
}

.nav-menu {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.nav-item:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn-login {
    background: linear-gradient(45deg, #ff3366, #ff6b9d);
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-login:hover {
    transform: scale(1.05);
}

.btn-register {
    background: transparent;
    border: 2px solid #00ff88;
    color: #00ff88;
    padding: 8px 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-register:hover {
    background: #00ff88;
    color: #0a2e1a;
}

/* Main Content */
.main-content {
    padding: 20px 15px;
    position: relative;
    z-index: 1; /* Меняем с overflow: hidden если есть */

}



/* Bonus Section */
.bonus-section {
    text-align: center;
    margin: 40px 0;
    position: relative;
    z-index: -1;
}

.bonus-section h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #00ff88;
}

.bonus-amount {
    font-size: 48px;
    font-weight: bold;
    color: #00ff88;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.bonus-description {
    font-size: 14px;
    margin: 20px 0;
    opacity: 0.9;
}

.btn-bonus {
    background: linear-gradient(45deg, #ff3366, #ff6b9d);
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.6);
}

/* Football Image */
.football-container {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
    z-index: 1;
}

.football {
    width: 300px;
    height: 200px;
    background: linear-gradient(45deg, #1a4b2f, #2d6b47);
    border-radius: 50px;
    position: relative;
    transform: rotate(-15deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.football::before {
    content: 'spinbetter';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
    color: #00ff88;
    font-weight: bold;
    font-size: 24px;
}

/* Events Section */
.events-section {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.events-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00ff88;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.event-card {
    background: rgba(26, 75, 47, 0.6);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.4);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.live-badge {
    background: #ff3366;
    color: white;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: bold;
}

.event-time {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
}

.teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.team {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.team-logo {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #00ff88, #ff3366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.score {
    font-size: 24px;
    font-weight: bold;
    color: #00ff88;
    margin: 0 20px;
}

.odds {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.odd-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
}

.odd-button:hover {
    background: #00ff88;
    color: #0a2e1a;
    transform: scale(1.05);
    border-color: #00ff88;
}

/* Casino Games Section */
.casino-section {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 18px;
    margin-bottom: 30px;
    color: #00ff88;
    text-align: center;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 280px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
    border-color: rgba(0, 255, 136, 0.5);
}

.game-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.game-title {
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    z-index: 2;
}

.game-icon {
    font-size: 48px;
    margin: 20px 0;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

.new-badge, .popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 3;
}

.new-badge {
    background: #ff3366;
    color: white;
}

.popular-badge {
    background: #ff6b9d;
    color: white;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play {
    background: linear-gradient(45deg, #ff3366, #ff6b9d);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-play:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.6);
}

/* Spin Splash Section */
.spin-splash-section {
    background: linear-gradient(135deg, #1a4b2f, #2d6b47);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.splash-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.splash-text {
    flex: 1;
    max-width: 50%;
}

.splash-title {
    font-size: 36px;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.splash-description {
    font-size: 18px;
    color: white;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-splash {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #0a2e1a;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.btn-splash:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.6);
}

.splash-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.character {
    font-size: 80px;
    position: absolute;
    animation: bounce 3s ease-in-out infinite;
}

.character-1 {
    left: 0;
    animation-delay: 0s;
}

.character-2 {
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.character-3 {
    right: 0;
    animation-delay: 2s;
}

.slot-machine {
    font-size: 120px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation: rotate 4s linear infinite;
}

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

@keyframes rotate {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}

/* Popular Games Section */
.popular-games-section {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.btn-see-all {
    background: rgba(255, 255, 255, 0.1);
    color: #00ff88;
    border: 2px solid #00ff88;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-see-all:hover {
    background: #00ff88;
    color: #0a2e1a;
    transform: scale(1.05);
}

.popular-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Sports Section */
.sports-section {
    margin-top: 60px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.sport-card {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 20px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0a2e1a;
    font-weight: bold;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sport-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, #00cc6a, #00ff88);
}

.sport-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.sport-name {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-see-sports {
    background: rgba(255, 255, 255, 0.1);
    color: #00ff88;
    border: 2px solid #00ff88;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-see-sports:hover {
    background: #00ff88;
    color: #0a2e1a;
    transform: scale(1.05);
}

/* New Games Section */
.new-games-section {
    margin-top: 60px;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.new-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* Bonus Cards Section */
.bonus-cards-section {
    margin-top: 60px;
    position: relative;
    z-index: -2;
}

.bonus-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.bonus-card {
    background: linear-gradient(135deg, #1a4b2f, #2d6b47);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.4);
}

.bonus-content {
    position: relative;
    z-index: 2;
}

.bonus-title {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}

.bonus-percentage {
    font-size: 48px;
    font-weight: bold;
    color: #ff3366;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.bonus-description {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.5;
}

.bonus-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-bonus-primary {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #0a2e1a;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-bonus-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.btn-bonus-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-bonus-secondary:hover {
    color: #00ff88;
    text-decoration: underline;
}

.bonus-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bonus-circle-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #00ff88, #ff3366);
    border-radius: 50%;
    opacity: 0.3;
}

.bonus-circle-2 {
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff3366, #00ff88);
    border-radius: 50%;
    opacity: 0.2;
}

/* Info Cards Section */
.info-cards-section {
    margin-top: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index:  1.5;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card {
    background: rgba(26, 75, 47, 0.5);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.info-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
    color: #00ff88;
}

.info-title {
    font-size: 16px;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 15px;
    line-height: 1.4;
}

.info-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.5;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.info-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    padding-left: 10px;
}

.btn-info {
    background: transparent;
    color: #00ff88;
    border: none;
    padding: 10px 0;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: underline;
}

.btn-info:hover {
    color: #00cc6a;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a2e1a, #0d3020);
    padding: 40px 20px 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links {
    flex: 1;
}

.footer-column {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #00ff88;
}

.footer-payments {
    flex: 1;
    max-width: 500px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.payment-icon {
    width: 40px;
    height: 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 20px;
}



.flag {
    font-size: 18px;
}

.age-restriction {
    display: flex;
    align-items: center;
}

.age-badge {
    background: #ff3366;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.footer-legal {
    text-align: right;
}

.license-info {
    margin-bottom: 10px;
}

.btn-license {
    background: transparent;
    color: #00ff88;
    border: none;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}

.btn-license:hover {
    color: #00cc6a;
}

.disclaimer, .copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0;
}

/* Mobile Adaptations */
@media (max-width: 768px) {
    .header {
        padding: 10px;
        justify-content: space-between;
    }

    .logo {
        font-size: 24px;
        order: 1;
            border-radius: 0 !important;

    }
    .logo img {
        height: 40px;
        width: auto;
        max-width: 150px;
            border-radius: 0 !important;

    }

    .language-switcher {
        order: 2;
        margin: 0 10px 0 0;
    }

    .lang-current {
        padding: 6px 10px;
        min-width: 70px;
        font-size: 11px;
    }

    .lang-name {
        display: none; /* Hide text on mobile, show only flag */
    }

    .nav-menu {
        display: none;
        order: 4;
        width: 100%;
        margin-top: 10px;
    }

    .auth-buttons {
        order: 3;
        gap: 8px;
    }

    .btn-register, .btn-login {
        padding: 6px 12px;
        font-size: 11px;
    }

    .bonus-amount {
        font-size: 36px;
    }

    .football-container {
        display: none;
    }

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

    .teams {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .score {
        margin: 10px 0;
    }

    .odds {
        flex-wrap: wrap;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .game-card {
        height: 200px;
    }

    .game-title {
        font-size: 12px;
    }

    .game-icon {
        font-size: 32px;
    }

    .splash-content {
        flex-direction: column;
        text-align: center;
    }

    .splash-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .splash-title {
        font-size: 24px;
    }

    .splash-description {
        font-size: 14px;
    }

    .character {
        font-size: 50px;
    }

    .slot-machine {
        font-size: 80px;
    }

    .spin-splash-section {
        padding: 20px;
    }

    .section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .popular-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .new-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sport-card {
        padding: 20px 15px;
        min-height: 100px;
    }

    .sport-icon {
        font-size: 28px;
    }

    .sport-name {
        font-size: 10px;
    }

    .btn-see-all {
        font-size: 10px;
        padding: 8px 16px;
    }

    .btn-see-sports {
        font-size: 12px;
        padding: 12px 24px;
    }

    .bonus-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bonus-card {
        padding: 25px;
    }

    .bonus-percentage {
        font-size: 36px;
    }

    .bonus-buttons {
        flex-direction: column;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 20px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-column {
        flex-direction: column;
        gap: 10px;
    }

    .payment-methods {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

@media (min-width: 769px) {
    .main-content {
        padding: 40px;
    }

    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }

    .bonus-amount {
        font-size: 64px;
    }

    .header {
        padding: 15px 40px;
    }

    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .popular-games-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .new-games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sports-grid {
        grid-template-columns: repeat(7, 1fr);
    }

    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .popular-games-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .new-games-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .sports-grid {
        grid-template-columns: repeat(7, 1fr);
    }

    .footer-column {
        justify-content: flex-start;
    }

    .splash-title {
        font-size: 48px;
    }
}

/* Content Section Styles */
.container.mx-auto.py-10.prose.prose-invert {
    padding: 20px 15px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #00ff88;
    margin: 30px 0 15px 0;
    font-weight: bold;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
    padding-bottom: 10px;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5,
h6 {
    font-size: 1rem;
}

p {
    margin: 15px 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

a {
    color: #00ff88;
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: #00cc6a;
}

/* Lists */
ul,
ol {
    margin: 15px 0;
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.9);
}

li {
    margin: 8px 0;
    line-height: 1.6;
}

ul li {
    list-style-type: disc;
}

ol li {
    list-style-type: decimal;
}

li::marker {
    color: #00ff88;
}

/* Nested lists */
ul ul,
ol ol,
ul ol,
ol ul {
    margin: 5px 0;
    padding-left: 20px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(26, 75, 47, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

td {
    color: rgba(255, 255, 255, 0.9);
}

tr:hover {
    background: rgba(0, 255, 136, 0.1);
}

tr:last-child td {
    border-bottom: none;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid #00ff88;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 5px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

blockquote p {
    margin: 0;
}

/* Code */
code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #00ff88;
    font-size: 0.9em;
}

pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

pre code {
    background: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Horizontal Rule */
hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    margin: 30px 0;
}

/* Strong and Em */
strong {
    color: #00ff88;
    font-weight: bold;
}

em {
    color: #00cc6a;
    font-style: italic;
}

/* Definition Lists */
dl {
    margin: 15px 0;
}

dt {
    color: #00ff88;
    font-weight: bold;
    margin-top: 15px;
}

dd {
    margin: 5px 0 10px 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Tables */
@media (max-width: 768px) {
    .main-content {
        padding: 15px 10px;
    }
    
    table {
        font-size: 14px;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
    
    th,
    td {
        padding: 8px 10px;
        min-width: 100px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    pre {
        font-size: 12px;
        padding: 10px;
    }
}

@media (min-width: 769px) {
    .main-content {
        padding: 40px;
    }
}