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

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #1a1d2e;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: visible;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Live Notifications Banner (Ticker) */
.live-notifications {
    background: linear-gradient(135deg, #1a1d2e 0%, #0f1117 100%);
    border-bottom: 2px solid #4ade80;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    z-index: 100;
}

.live-notifications-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    height: 40px;
    overflow: hidden;
}

.live-ticker {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.live-ticker-content {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    padding-left: 100%;
}

.live-ticker-content.paused {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.live-icon {
    font-size: 20px;
    animation: bounce 2s ease-in-out infinite;
}

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

.live-text {
    font-size: 14px;
    font-weight: 600;
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

.live-text .username {
    color: #fbbf24;
    font-weight: 700;
}

.live-text .amount {
    color: #22c55e;
    font-weight: 700;
}

@media (max-width: 768px) {
    .live-text {
        font-size: 12px;
    }
    
    .live-notifications-container {
        height: 35px;
    }
}

/* Header Styles */
.header {
    background-color: #0f1117;
    border-bottom: 1px solid #2a2d3e;
}

.header-top {
    padding: 12px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
}

.hamburger-menu span {
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
}

.btn-login,
.btn-register {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-login {
    background-color: transparent;
    color: #4ade80;
    border: 1px solid #4ade80;
}

.btn-login:hover {
    background-color: #4ade80;
    color: #ffffff;
}

.btn-register {
    background-color: #fbbf24;
    color: #000000;
}

.btn-register:hover {
    background-color: #f59e0b;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    font-size: 14px;
}

/* Main Navigation */
.main-nav {
    background-color: #151821;
    padding: 0;
}

@media (max-width: 768px) {
    .main-nav {
        display: none !important;
    }
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #1e293b;
    color: #4ade80;
}

.promotions-icon {
    color: #ffffff;
    font-size: 12px;
    padding: 15px 20px;
}

/* Banner Section */
.banner-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #1a1d2e 0%, #0f1117 100%);
}

.banner-image-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.banner-image {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 17, 23, 0.7) 0%, rgba(26, 29, 46, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    z-index: 2;
}

.banner-title {
    font-size: 42px;
    font-weight: bold;
    margin: 0;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5), 0 0 20px rgba(74, 222, 128, 0.3);
    letter-spacing: 2px;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.btn-play {
    background-color: #ffffff;
    color: #22c55e;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Game Navigation */
.game-nav-section {
    background-color: #151821;
    padding: 12px 0;
    border-bottom: 1px solid #2a2d3e;
}

@media (max-width: 768px) {
    .game-nav-section {
        display: none;
    }
}

.game-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.game-nav::-webkit-scrollbar {
    height: 4px;
}

.game-nav::-webkit-scrollbar-track {
    background: #1a1d2e;
}

.game-nav::-webkit-scrollbar-thumb {
    background: #4ade80;
    border-radius: 2px;
}

.search-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon img {
    width: 20px;
    height: 20px;
}

.game-nav-list {
    display: flex;
    list-style: none;
    gap: 0;
}

.game-nav-link {
    color: #9ca3af;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.game-nav-link:hover,
.game-nav-link.active {
    color: #4ade80;
}

/* Popular Slots Section */
.popular-slots-section {
    padding: 40px 0;
    background-color: #151821;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.slot-card {
    background-color: #1a1d2e;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.slot-card:hover {
    transform: translateY(-5px);
    border-color: #4ade80;
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.2);
}

.slot-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.slot-card h3 {
    padding: 15px 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    background-color: #1a1d2e;
}

/* Cookie Disclaimer */
.cookie-disclaimer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1d2e 0%, #0f1117 100%);
    border-top: 2px solid #4ade80;
    z-index: 10000;
    padding: 12px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    display: none;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-disclaimer-content {
    color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-header h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #4ade80;
}

.cookie-header p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-categories {
    margin-bottom: 12px;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 8px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.cookie-category-name {
    font-weight: 600;
    font-size: 13px;
    color: #ffffff;
}

.cookie-category-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2a2d3e;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: #22c55e;
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-slider {
    background-color: #22c55e;
    cursor: not-allowed;
}

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

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept-all {
    background-color: #22c55e;
    color: #ffffff;
}

.cookie-accept-all:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
}

.cookie-save {
    background-color: #4ade80;
    color: #1a1d2e;
}

.cookie-save:hover {
    background-color: #22c55e;
    color: #ffffff;
}

.cookie-reject {
    background-color: #ef4444;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #dc2626;
}

@media (max-width: 768px) {
    .cookie-disclaimer {
        bottom: 100px;
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Cookie Disclaimer */
.cookie-disclaimer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1d2e 0%, #0f1117 100%);
    border-top: 2px solid #4ade80;
    z-index: 9999;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
}

.cookie-icon {
    font-size: 24px;
}

.cookie-text p {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept {
    background-color: #22c55e;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
}

.cookie-decline {
    background-color: #ef4444;
    color: #ffffff;
}

.cookie-decline:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
}

.cookie-link {
    color: #4ade80;
    text-decoration: underline;
    font-size: 13px;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #22c55e;
}

@media (max-width: 768px) {
    .cookie-disclaimer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Age Disclaimer */
.age-disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-disclaimer-content {
    background: linear-gradient(135deg, #1a1d2e 0%, #0f1117 100%);
    border: 2px solid #4ade80;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.age-disclaimer-content p {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

.age-disclaimer-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-confirm {
    background-color: #22c55e;
    color: #ffffff;
}

.age-confirm:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
}

.age-deny {
    background-color: #ef4444;
    color: #ffffff;
}

.age-deny:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
}

/* License Disclaimer */
.license-disclaimer {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-top: 2px solid #f59e0b;
    border-bottom: 2px solid #f59e0b;
    padding: 12px 0;
    margin: 20px 0;
    position: relative;
    z-index: 10;
}

.license-disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.license-icon {
    font-size: 18px;
}

.license-text {
    font-size: 13px;
    font-weight: 600;
    color: #1a1d2e;
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .license-text {
        font-size: 11px;
    }
    
    .age-disclaimer-content {
        padding: 30px 20px;
    }
    
    .age-disclaimer-content p {
        font-size: 18px;
    }
}

/* Bonus Sticky Aside */
.bonus-sticky {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    box-shadow: 0 -4px 20px rgba(34, 197, 94, 0.4) !important;
    border-top: 2px solid #4ade80 !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
    will-change: transform !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.bonus-close {
    position: absolute !important;
    top: 10px !important;
    right: 15px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: bold !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    z-index: 1003 !important;
    line-height: 1 !important;
    padding: 0 !important;
    pointer-events: auto !important;
    margin: 0 !important;
    outline: none !important;
}

.bonus-close:hover {
    background: rgba(255, 255, 255, 0.4) !important;
    transform: rotate(90deg);
}

.bonus-close:active {
    background: rgba(255, 255, 255, 0.5) !important;
}

.bonus-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bonus-icon {
    font-size: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.bonus-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.bonus-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.bonus-amount {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.bonus-timer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-top: 8px;
}

.timer-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.timer-display {
    font-size: 18px;
    font-weight: bold;
    color: #fbbf24;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    letter-spacing: 2px;
}

.timer-hours,
.timer-minutes,
.timer-seconds {
    display: inline-block;
    min-width: 24px;
    text-align: center;
}

.bonus-btn {
    background-color: #fbbf24;
    color: #1a1d2e;
    border: none;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.bonus-btn:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(251, 191, 36, 0.6);
}

.bonus-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .bonus-sticky {
        padding: 8px 0 !important;
    }
    
    .bonus-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 0 10px;
    }
    
    .bonus-icon {
        font-size: 20px;
    }
    
    .bonus-text {
        align-items: center;
    }
    
    .bonus-label {
        font-size: 9px;
    }
    
    .bonus-amount {
        font-size: 14px;
    }
    
    .bonus-btn {
        width: 100%;
        max-width: 250px;
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .cookie-disclaimer {
        padding: 10px 0;
        max-height: 70vh;
    }
    
    .cookie-header h3 {
        font-size: 14px;
    }
    
    .cookie-header p {
        font-size: 11px;
    }
    
    .cookie-category {
        padding: 8px;
    }
    
    .cookie-category-name {
        font-size: 12px;
    }
    
    .cookie-category-desc {
        font-size: 10px;
    }
    
    .cookie-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}

.main-content {
    padding: 30px 0;
    padding-bottom: 100px;
    background-color: #1a1d2e;
}

.content-article {
    max-width: 900px;
    margin: 0 auto;
}

.content-article h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #4ade80;
}

.content-article h3 {
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #ffffff;
}

.content-article h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #4ade80;
}

.content-article p {
    margin-bottom: 12px;
    color: #d1d5db;
    line-height: 1.8;
}

.btn-read-more {
    margin-top: 30px;
    background-color: #4ade80;
    color: #000000;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-read-more:hover {
    background-color: #22c55e;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #0f1117;
    padding: 40px 0 20px;
    border-top: 1px solid #2a2d3e;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4ade80;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4ade80;
}

.footer-licensing {
    max-width: 400px;
}

.licensing-logos {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.gcb-logo,
.xnext-logo {
    height: 30px;
    width: auto;
}

.licensing-text {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.responsible-gaming {
    font-size: 12px;
    color: #ef4444;
    margin-bottom: 15px;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.age-18 {
    height: 30px;
    width: auto;
}

.begambleaware {
    height: 30px;
    width: auto;
}

.copyright {
    font-size: 12px;
    color: #6b7280;
}

.footer-payment-methods {
    border-top: 1px solid #2a2d3e;
    padding-top: 30px;
    margin-top: 30px;
}

.payment-methods-title {
    font-size: 14px;
    color: #4ade80;
    margin-bottom: 20px;
    text-align: center;
}

.payment-logos,
.provider-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.payment-logo,
.provider-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.payment-logo:hover,
.provider-logo:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top-content {
        flex-wrap: wrap;
    }

    .nav-list {
        flex-wrap: wrap;
    }

    .nav-link {
        padding: 12px 15px;
        font-size: 12px;
    }

    .banner {
        padding: 40px 20px;
    }

    .banner-title {
        font-size: 32px;
    }

    .banner-subtitle {
        font-size: 24px;
    }

    .game-nav-list {
        flex-wrap: nowrap;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .content-article h2 {
        font-size: 24px;
    }

    .content-article h3 {
        font-size: 20px;
    }

    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .slot-image {
        height: 140px;
    }

    .slot-card h3 {
        font-size: 16px;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .header-actions {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-login,
    .btn-register {
        padding: 8px 15px;
        font-size: 12px;
    }

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

    .banner-subtitle {
        font-size: 18px;
    }

    .btn-play {
        padding: 12px 30px;
        font-size: 16px;
    }

    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .slot-image {
        height: 120px;
    }

    .slot-card h3 {
        font-size: 14px;
        padding: 10px 12px;
    }
}

