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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f4c75 100%);
    color: #ffffff;
    line-height: 1.6;
    padding-bottom: 80px;
}

.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    background: #7FFF00;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(127, 255, 0, 0.3);
    font-size: 24px;
}

.header {
    background: rgba(26, 26, 46, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
}

.logo svg {
    filter: drop-shadow(0 0 10px #7FFF00);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid #7FFF00;
    color: #7FFF00;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #7FFF00;
    color: #1a1a2e;
}

.btn-primary {
    background: #7FFF00;
    color: #1a1a2e;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #65d900;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(127, 255, 0, 0.3);
}

.hero-banner {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44bff 50%, #7c4dff 100%);
    padding: 40px 20px;
    margin: 0 20px;
    border-radius: 20px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=800') center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.hero-text {
    flex: 1;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.offer-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.offer-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-join {
    background: #7FFF00;
    color: #1a1a2e;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-join:hover {
    background: #65d900;
    transform: translateY(-2px);
}

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

.casino-chip {
    animation: float 3s ease-in-out infinite;
}

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

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

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

.dot.active {
    background: #7FFF00;
}

.search-filters {
    display: flex;
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-dropdown {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.filter-dropdown:hover {
    background: rgba(255, 255, 255, 0.2);
}

.search-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-box:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sticky-nav {
    background: rgba(26, 26, 46, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 80px;
    z-index: 99;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sticky-nav.scrolled {
    top: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.nav-item.active {
    color: #7FFF00;
    opacity: 1;
}

.nav-item:hover {
    color: #7FFF00;
    opacity: 1;
}

.winners-section {
    background: rgba(26, 26, 46, 0.8);
    margin: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.winners-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
}

.tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: #7FFF00;
    color: #1a1a2e;
    font-weight: bold;
}

.winners-list {
    padding: 20px;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.winner-item:last-child {
    border-bottom: none;
}

.game-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.winner-info {
    flex: 1;
}

.winner-amount {
    font-size: 18px;
    font-weight: bold;
    color: #7FFF00;
}

.game-name {
    font-size: 14px;
    opacity: 0.8;
    margin: 2px 0;
}

.time-ago {
    font-size: 12px;
    opacity: 0.6;
}

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

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

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #7FFF00;
}

.view-all {
    color: #7FFF00;
    text-decoration: none;
    font-weight: 500;
}

.view-all:hover {
    text-decoration: underline;
}

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

.game-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
}

.exclusive-badge,
.jackpot-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.exclusive-badge {
    background: #FFD700;
    color: #1a1a2e;
}

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

.game-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.game-title {
    padding: 15px;
    font-weight: 600;
}

.content-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.7;
}

.breadcrumb a {
    color: #7FFF00;
    text-decoration: none;
}

.seo-content {
    background: rgba(26, 26, 46, 0.8);
    padding: 40px;
    border-radius: 20px;
    line-height: 1.8;
}

.seo-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #7FFF00;
}

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

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

.seo-content p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

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

.seo-content table th {
    background: rgba(127, 255, 0, 0.1);
    color: #7FFF00;
    font-weight: bold;
}

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

.seo-content ol li,
.seo-content ul li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 40px 0 20px 0;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #7FFF00;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.payment-logo {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.age-restriction {
    margin-bottom: 20px;
}

.age-badge {
    background: #ff6b9d;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
}

.footer-disclaimer {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.5;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.bottom-nav .nav-item {
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    min-width: 60px;
    font-size: 12px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.bottom-nav .nav-item.active {
    color: #7FFF00;
    opacity: 1;
}

.bottom-nav .nav-item:hover {
    color: #7FFF00;
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .offer-title {
        font-size: 28px;
    }
    
    .offer-subtitle {
        font-size: 18px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .nav-container {
        gap: 20px;
        justify-content: center;
    }
    
    .search-filters {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .seo-content {
        padding: 20px;
    }
    
    .seo-content h1 {
        font-size: 24px;
    }
    
    .seo-content h2 {
        font-size: 20px;
    }
    
    .payment-methods {
        gap: 15px;
    }
    
    .payment-logo {
        height: 25px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .hero-banner {
        margin: 20px 15px;
        padding: 30px 20px;
    }
    
    .offer-title {
        font-size: 24px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seo-content {
        padding: 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
}