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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.online-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4ade80;
}

.online-status span:last-child {
    transition: opacity 0.3s ease;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.btn-register {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.btn-register:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.btn-login {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Banner Styles */
.banner {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

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

.banner-text h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #ffffff;
}

.banner-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.banner-image {
    position: relative;
    width: 300px;
    height: 200px;
}

.casino-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    width: 40px;
    height: 60px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.card:nth-child(1) { top: 20px; left: 20px; animation-delay: 0s; }
.card:nth-child(2) { top: 40px; left: 60px; animation-delay: 0.5s; }
.card:nth-child(3) { top: 60px; left: 100px; animation-delay: 1s; }
.card:nth-child(4) { top: 30px; left: 140px; animation-delay: 1.5s; }

.ace-spades { color: #000; }
.ace-clubs { color: #000; }
.ace-hearts { color: #dc2626; }
.ace-diamonds { color: #dc2626; }

.roulette-wheel {
    position: absolute;
    top: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    border: 3px solid #ffd700;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #dc2626, #000, #dc2626, #000);
    animation: spin 4s linear infinite;
}

.casino-chips {
    position: absolute;
    bottom: 20px;
    left: 50px;
}

.chip {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    border: 2px solid #ffd700;
}

.chip-1 {
    background: #dc2626;
    top: 0;
    left: 0;
}

.chip-2 {
    background: #1e40af;
    top: 10px;
    left: 10px;
}

.dice {
    position: absolute;
    bottom: 20px;
    right: 80px;
}

.die {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 4px;
    position: absolute;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.die-1 { top: 0; left: 0; }
.die-2 { top: 10px; left: 10px; }

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* Navigation Styles */
.game-nav {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-tabs {
    display: flex;
    gap: 10px;
}

.nav-tab {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-tab.active,
.nav-tab:hover {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-color: #8b5cf6;
}

.nav-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.provider-select {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 14px;
}

.provider-select option {
    background: #1a1a2e;
    color: white;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 5px 10px;
}

.search-box input {
    background: transparent;
    border: none;
    color: white;
    padding: 8px;
    font-size: 14px;
    outline: none;
    width: 200px;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

/* Jackpot Cards Section */
.featured-games {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
}

.jackpot-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.jackpot-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 15px;
}

.jackpot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.1);
}

.jackpot-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.jackpot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jackpot-card:hover .jackpot-image img {
    transform: scale(1.05);
}

.jackpot-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.player-id {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.game-name {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 2px 0;
}

.jackpot-amount {
    font-size: 18px;
    font-weight: 700;
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

/* Games Section */

.games-section {
    padding: 40px 0;
}

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

.main-games {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

.game-card.featured {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.game-image {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.game-title {
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.game-info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-price {
    color: #4ade80;
    font-weight: 600;
    font-size: 16px;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffd700;
    text-align: center;
}

.content h2 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    color: #ffffff;
}

.content h3 {
    font-size: 20px;
    margin: 25px 0 10px 0;
    color: #ffd700;
}

.content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content ul, .content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.content li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 8px;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ffd700;
    border-radius: 8px;
    overflow: hidden;
}

.table-wrapper {
    margin: 20px 0;
}

.content table th {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #ffd700;
}

.content table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

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

.content table tr:hover {
    background: rgba(139, 92, 246, 0.1);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 20px 0;
    margin-top: 40px;
}

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

.footer-section h4 {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 14px;
}

.license-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.payment-logos, .provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.payment-logo, .provider-logo {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-logo:hover, .provider-logo:hover {
    opacity: 1;
}

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

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

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

.footer-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .header-right {
        gap: 12px;
        flex-shrink: 0;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
        min-width: auto;
    }
    
    .online-status {
        display: none;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .banner-text h1 {
        font-size: 32px;
    }
    
    .banner-text h2 {
        font-size: 24px;
    }
    
    .banner-image {
        width: 250px;
        height: 150px;
    }
    
    .nav-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-controls {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .jackpot-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .jackpot-card {
        padding: 12px;
        gap: 12px;
    }
    
    .jackpot-image {
        width: 60px;
        height: 60px;
    }
    
    .game-name {
        font-size: 14px;
    }
    
    .jackpot-amount {
        font-size: 16px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .main-games {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .game-image {
        height: 100px;
    }
    
    .content-placeholder h2 {
        font-size: 24px;
    }
    
    .content-placeholder p {
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .payment-logos, .provider-logos {
        justify-content: center;
    }
    
    .content table th,
    .content table td {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .content table th {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        padding: 0 10px;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .btn {
        padding: 12px 18px;
        font-size: 12px;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .banner-text h1 {
        font-size: 24px;
    }
    
    .banner-text h2 {
        font-size: 18px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-games {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-image {
        height: 80px;
    }
    
    .game-title {
        font-size: 12px;
        padding: 10px;
    }
    
    .game-info {
        padding: 10px;
    }
    
    .game-price {
        font-size: 14px;
    }
    
    .content table th,
    .content table td {
        padding: 6px 4px;
        font-size: 11px;
        line-height: 1.3;
    }
    
    .content table th {
        font-size: 12px;
        padding: 8px 4px;
    }
}
