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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a4d4d 0%, #0d2626 100%);
    color: white;
    line-height: 1.6;
}

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

/* Header */
.header {
    background: rgba(13, 38, 38, 0.95);
    border-bottom: 1px solid #00ff88;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo svg {
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: #00ff88;
    color: #000;
}

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

.time, .lang {
    font-size: 12px;
    color: #ccc;
}

.btn-login {
    background: transparent;
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #00ff88;
    color: #000;
}

.btn-register {
    background: #00ff88;
    color: #000;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 38, 38, 0.9) 0%, rgba(26, 77, 77, 0.7) 100%);
    z-index: 1;
}

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

.hero-left {
    flex: 1;
}

.crown-icon {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

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

.welcome-box {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
    border: 2px solid #00ff88;
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.welcome-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff88, #0066cc, #00ff88);
    z-index: -1;
    border-radius: 15px;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.welcome-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00ff88;
}

.welcome-amount {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #00ff88, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.btn-bonus {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.btn-bonus:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-images {
    position: relative;
    width: 400px;
    height: 300px;
}

.dealer-1, .dealer-2, .dealer-3 {
    position: absolute;
    width: 120px;
    height: 150px;
    background: linear-gradient(135deg, #333, #555);
    border-radius: 10px;
    border: 2px solid #00ff88;
}

.dealer-1 {
    top: 20px;
    left: 20px;
    z-index: 3;
}

.dealer-2 {
    top: 50px;
    left: 140px;
    z-index: 2;
}

.dealer-3 {
    top: 80px;
    left: 260px;
    z-index: 1;
}

.cards {
    position: absolute;
    bottom: 60px;
    left: 80px;
    display: flex;
    gap: 10px;
}

.card {
    background: white;
    color: #000;
    padding: 15px 10px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: cardFlip 2s ease-in-out infinite alternate;
}

@keyframes cardFlip {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(15deg); }
}

.roulette {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b00, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    color: white;
    animation: spin 3s linear infinite;
}

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

/* Promo Bar */
.promo-bar {
    background: linear-gradient(90deg, #00ff88 0%, #0066cc 100%);
    padding: 15px 0;
    margin-top: -1px;
}

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

.promo-text {
    font-weight: bold;
    color: #000;
    font-size: 16px;
}

.promo-arrows {
    color: #000;
    font-weight: bold;
    animation: pulse 1.5s ease-in-out infinite;
}

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

.btn-play {
    background: #ff4444;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background: #cc3333;
    transform: scale(1.05);
}

.search-container {
    display: flex;
    align-items: center;
}

.search-input {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 8px 15px;
    border-radius: 20px 0 0 20px;
    outline: none;
    color: #000;
}

.search-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 8px 15px;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    border-left: 1px solid #ccc;
}

/* Games Section */
.games-section {
    padding: 50px 0;
}

.games-section .container {
    display: flex;
    gap: 30px;
}

.sidebar {
    width: 250px;
    background: rgba(13, 38, 38, 0.8);
    border-radius: 10px;
    padding: 20px;
    height: fit-content;
}

.category {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    margin-bottom: 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ccc;
}

.category:hover,
.category.active {
    background: #00ff88;
    color: #000;
}

.category svg {
    width: 20px;
    height: 20px;
}

.category span {
    font-size: 12px;
    font-weight: 600;
}

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

.game-card {
    background: rgba(13, 38, 38, 0.8);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.2);
}

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

.game-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 15px;
    font-weight: bold;
    text-align: center;
    color: white;
}

/* Winners Section */
.winners-section {
    padding: 30px 0;
    background: rgba(0, 255, 136, 0.05);
}

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

.winners-title {
    font-size: 18px;
    font-weight: bold;
    color: #00ff88;
}

.green-circle {
    width: 20px;
    height: 20px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

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

.seo-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.seo-content h1 {
    font-size: 36px;
    color: #00ff88;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(45deg, #00ff88, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-content h2 {
    font-size: 28px;
    color: #00ff88;
    margin: 40px 0 20px;
    border-left: 4px solid #00ff88;
    padding-left: 15px;
}

.seo-content h3 {
    font-size: 22px;
    color: #ffffff;
    margin: 30px 0 15px;
}

.seo-content p {
    margin-bottom: 20px;
    color: #e0e0e0;
    font-size: 16px;
}

.seo-content strong {
    color: #00ff88;
    font-weight: 600;
}

.bonus-table,
.payment-table {
    margin: 30px 0;
    overflow-x: auto;
}

.bonus-table table,
.payment-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(13, 38, 38, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.bonus-table th,
.payment-table th {
    background: #00ff88;
    color: #000;
    padding: 15px;
    font-weight: bold;
    text-align: left;
}

.bonus-table td,
.payment-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.bonus-table tr:last-child td,
.payment-table tr:last-child td {
    border-bottom: none;
}

/* Footer */
.footer {
    background: #0d1a1a;
    padding: 40px 0 20px;
    border-top: 1px solid #00ff88;
}

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

.footer-section {
    color: #ccc;
}

.footer-title {
    color: #00ff88;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-logo {
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 30px;
    background: white;
    padding: 5px;
    border-radius: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-images {
        width: 300px;
        height: 200px;
    }
    
    .games-section .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .seo-content h1 {
        font-size: 28px;
    }
    
    .seo-content h2 {
        font-size: 24px;
    }
    
    .promo-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}