/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #dc2626;
    --dark-red: #991b1b;
    --light-red: #ef4444;
    --black: #000000;
    --dark-gray: #111111;
    --medium-gray: #1f1f1f;
    --light-gray: #333333;
    --white: #ffffff;
    --text-gray: #9ca3af;
    --gold: #fbbf24;
    --green: #10b981;
    --blue: #3b82f6;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
    border-right: 2px solid var(--primary-red);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header .logo {
    height: 50px;
    width: auto;
}

.close-sidebar {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.sidebar-nav {
    padding: 20px 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover {
    background: var(--primary-red);
    color: var(--white);
    padding-left: 30px;
}

.sidebar-nav a i {
    margin-right: 10px;
    width: 20px;
}

.sidebar-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    border-top: 1px solid var(--light-gray);
}

.update-info {
    display: flex;
    align-items: center;
    color: var(--green);
    font-size: 14px;
}

.update-info i {
    margin-right: 8px;
}

.spinning {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    background: linear-gradient(90deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    margin-right: 20px;
}

.header-logo img {
    height: 40px;
    width: auto;
}

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

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    background: var(--light-gray);
    border: 1px solid var(--primary-red);
    border-radius: 25px;
    padding: 8px 35px 8px 15px;
    color: var(--white);
    width: 200px;
    transition: width 0.3s ease;
}

.search-box input:focus {
    width: 250px;
    outline: none;
    border-color: var(--light-red);
}

.search-box i {
    position: absolute;
    right: 12px;
    color: var(--text-gray);
}

.btn-login, .btn-register {
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-login:hover {
    background: var(--primary-red);
    color: var(--white);
}

.btn-register {
    background: var(--primary-red);
    color: var(--white);
}

.btn-register:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

/* Banner Section */
.banner-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
}

.banner-slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.banner-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: none;
}

.banner-slide.active {
    display: block;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 2;
}

.banner-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.btn-promo {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-promo:hover {
    background: var(--light-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary-red);
}

/* Banner Promo Section - NEW */
.banner-promo {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 12px;
}

.banner-promo-slide {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #FF6347 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Pattern Overlay */
.banner-promo-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,215,0,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,215,0,0.2) 0%, transparent 50%);
    opacity: 0.5;
}

/* Character Image */
.banner-character {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 120%;
    width: auto;
    z-index: 2;
}

/* Content Container */
.banner-promo-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: 100px;
}

/* Logo Style */
.banner-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: #FFD700;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.8),
        0 0 20px rgba(255,215,0,0.5);
    margin-bottom: 10px;
    display: inline-block;
}

/* Main Title */
.banner-main-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 72px;
    line-height: 0.9;
    color: #FFD700;
    text-transform: uppercase;
    text-shadow: 
        4px 4px 8px rgba(0,0,0,0.8),
        0 0 30px rgba(255,215,0,0.6);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* Subtitle Box */
.banner-subtitle-box {
    background: linear-gradient(90deg, #8B4513 0%, #D2691E 50%, #8B4513 100%);
    border: 3px solid #FFD700;
    border-radius: 50px;
    padding: 12px 30px;
    display: inline-block;
    box-shadow: 
        0 5px 20px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.banner-subtitle {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Decorative Elements */
.banner-coins {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,215,0,0.5);
    animation: float 3s ease-in-out infinite;
}

.coin:nth-child(1) { top: 20%; right: 10%; animation-delay: 0s; }
.coin:nth-child(2) { top: 60%; right: 20%; animation-delay: 1s; }
.coin:nth-child(3) { top: 30%; right: 30%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Lightning Effect */
.lightning {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: lightning 4s infinite;
}

@keyframes lightning {
    0%, 90%, 100% { opacity: 0; }
    95% { opacity: 1; }
}

/* RTP Filter */
.rtp-filter {
    background: var(--medium-gray);
    padding: 20px 0;
    margin-bottom: 40px;
    border-top: 3px solid var(--primary-red);
    border-bottom: 3px solid var(--primary-red);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.time-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.time-btn {
    background: var(--light-gray);
    border: 1px solid var(--primary-red);
    color: var(--text-gray);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.time-btn.active {
    background: var(--primary-red);
    color: var(--white);
}

.time-btn:hover {
    background: var(--dark-red);
    color: var(--white);
}

.last-update {
    color: var(--text-gray);
    font-size: 14px;
}

#lastUpdate {
    color: var(--green);
    font-weight: bold;
}

/* Game Sections */
.game-section {
    margin-bottom: 60px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-red);
}

.section-header h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 i {
    color: var(--primary-red);
}

.info-icon {
    font-size: 18px;
    color: var(--text-gray);
    cursor: help;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 14px;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.game-card {
    background: var(--medium-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.game-card-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--light-gray);
}

.game-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid var(--primary-red);
}

.game-info {
    flex: 1;
}

.game-name {
    font-weight: bold;
    color: var(--white);
    margin-bottom: 5px;
}

.game-provider {
    font-size: 12px;
    color: var(--text-gray);
}

.rtp-badge {
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.rtp-badge.hot {
    background: var(--primary-red);
}

.rtp-badge.cold {
    background: var(--blue);
}

.game-card-body {
    padding: 15px;
}

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

.rtp-percentage {
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
}

.rtp-change {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.rtp-change.up {
    color: var(--green);
}

.rtp-change.down {
    color: var(--primary-red);
}

.game-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.stat {
    text-align: center;
    padding: 8px;
    background: var(--light-gray);
    border-radius: 8px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-gray);
    display: block;
    margin-bottom: 3px;
}

.stat-value {
    font-weight: bold;
    color: var(--white);
    font-size: 14px;
}

.play-button {
    width: 100%;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.play-button:hover {
    background: var(--dark-red);
}

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

.showcase-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    height: 280px;
    transition: all 0.3s ease;
}

.showcase-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px 15px;
}

.showcase-title {
    color: var(--white);
    font-weight: bold;
    margin-bottom: 5px;
}

.showcase-rtp {
    background: var(--primary-red);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
}

/* Providers Section */
.providers-section {
    margin-bottom: 60px;
}

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

.provider-card {
    background: var(--medium-gray);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.provider-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 12px;
}

.provider-card:hover::before {
    opacity: 1;
}

.provider-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

.provider-card img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.provider-card:hover img {
    filter: brightness(1);
}

.game-count {
    color: var(--text-gray);
    font-size: 14px;
}

/* Promo Section */
.promo-section {
    margin-bottom: 60px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.promo-card {
    background: var(--medium-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--light-gray);
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.promo-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.promo-content {
    padding: 20px;
}

.promo-content h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.promo-content p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-claim {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-claim:hover {
    background: var(--dark-red);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    padding: 50px 0 20px;
    margin-top: 80px;
    border-top: 3px solid var(--primary-red);
}

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

.footer-section h3 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.payment-methods img {
    width: 100%;
    height: 40px;
    object-fit: contain;
    background: var(--white);
    padding: 5px;
    border-radius: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    color: var(--text-gray);
}

/* Floating RTP Info */
.floating-rtp-info {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--medium-gray);
    border: 2px solid var(--primary-red);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    gap: 20px;
    z-index: 800;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.rtp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rtp-stat .label {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.rtp-stat .value {
    font-weight: bold;
    color: var(--white);
}

/* Modal Styles */
.provider-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--dark-gray);
    border-radius: 12px;
    width: 90%;
    max-width: 1200px;
    max-height: 80vh;
    overflow: hidden;
    border: 2px solid var(--primary-red);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--medium-gray);
    border-bottom: 2px solid var(--primary-red);
}

.modal-header h2 {
    color: var(--white);
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
}

.close-modal {
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-red);
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(80vh - 80px);
}

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

.provider-game-card {
    background: var(--medium-gray);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.provider-game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.provider-game-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.provider-game-card h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 8px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-rtp {
    color: var(--green);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.play-btn {
    width: 100%;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 8px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: var(--dark-red);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .header-actions {
        gap: 10px;
    }
    
    .search-box input {
        width: 150px;
    }
    
    .search-box input:focus {
        width: 180px;
    }
    
    .banner-content {
        left: 30px;
        bottom: 30px;
    }
    
    .banner-content h2 {
        font-size: 36px;
    }
    
    .games-showcase {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    /* Banner Promo Responsive */
    .banner-promo {
        height: 350px;
    }
    
    .banner-main-title {
        font-size: 56px;
    }
    
    .banner-promo-content {
        margin-right: 50px;
    }
}

@media (max-width: 768px) {
    .close-sidebar {
        display: block;
    }
    
    .header-logo {
        margin: 0 auto;
    }
    
    .btn-login {
        display: none;
    }
    
    .search-box {
        display: none;
    }
    
    .banner-section {
        height: 300px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .time-filter {
        flex-wrap: wrap;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .floating-rtp-info {
        bottom: 10px;
        right: 10px;
        left: 10px;
        justify-content: space-around;
    }
    
    /* Banner Promo Responsive */
    .banner-promo {
        height: 300px;
    }
    
    .banner-character {
        height: 100%;
        opacity: 0.3;
    }
    
    .banner-promo-content {
        margin: 0 auto;
        padding: 20px;
    }
    
    .banner-main-title {
        font-size: 42px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
    
    .provider-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 24px;
    }
    
    .games-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .showcase-card {
        height: 200px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    /* Banner Promo Responsive */
    .banner-promo {
        height: 250px;
    }
    
    .banner-logo {
        font-size: 28px;
    }
    
    .banner-main-title {
        font-size: 32px;
    }
    
    .banner-subtitle-box {
        padding: 8px 20px;
    }
    
    .banner-subtitle {
        font-size: 14px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

.pulse {
    animation: pulse 2s infinite;
}

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

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--light-gray) 25%, var(--medium-gray) 50%, var(--light-gray) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Custom Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: var(--medium-gray);
    color: var(--white);
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    border: 1px solid var(--primary-red);
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--medium-gray);
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--white);
    z-index: 1100;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-color: var(--green);
}

.notification.error {
    border-color: var(--primary-red);
}
.pola-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
}

.pola-title {
    color: var(--gold);
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}

.pola-content {
    text-align: center;
    color: var(--white);
    font-size: 13px;
    line-height: 1.5;
}

/* Bet Section */
.bet-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid var(--green);
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
}

.bet-title {
    color: var(--green);
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}

.bet-content {
    text-align: center;
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
}

/* Provider Game Card dengan Pola */
.provider-game-card .pola-gacor {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 8px;
    margin: 8px 0;
    font-size: 11px;
}

.provider-game-card .pola-label {
    color: var(--gold);
    font-weight: bold;
    display: block;
    margin-bottom: 3px;
}

.provider-game-card .pola-value {
    color: var(--white);
    display: block;
    line-height: 1.4;
}

.provider-game-card .bet-info {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--green);
    border-radius: 6px;
    padding: 8px;
    margin: 8px 0;
    font-size: 11px;
}

.provider-game-card .bet-label {
    color: var(--green);
    font-weight: bold;
    display: block;
    margin-bottom: 3px;
}

.provider-game-card .bet-value {
    color: var(--white);
    font-weight: bold;
    display: block;
}

/* Animasi untuk Pola Gacor */
.pola-section:hover {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.bet-section:hover {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Responsive untuk Mobile */
@media (max-width: 768px) {
    .pola-content {
        font-size: 11px;
    }
    
    .bet-content {
        font-size: 12px;
    }
    
    .provider-game-card .pola-gacor,
    .provider-game-card .bet-info {
        font-size: 10px;
        padding: 6px;
    }
}