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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0e27, #1a1f3a);
    color: #ffffff;
    overflow-x: hidden;
}

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

/* Breadcrumb */
.breadcrumb {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    font-size: 12px;
}

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

.breadcrumb span {
    color: #888;
    margin: 0 5px;
}

/* Header */
.header {
    background: linear-gradient(90deg, #0a0e27, #1a1f3a);
    border-bottom: 2px solid #ffd700;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ffd700;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-login, .btn-register {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-login {
    color: #ffd700;
    border: 2px solid #ffd700;
    background: transparent;
}

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

.btn-register {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.7);
    z-index: 1;
}

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

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.hero-bonus {
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.btn-play-now {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-play-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-height: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.social-icons {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

/* Partnership Section */
.partnership {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    text-align: center;
}

.partnership-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partnership-badge img {
    height: 50px;
}

.partnership-badge span {
    font-weight: bold;
    color: #ffd700;
}

.certified {
    background: #00ff00;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.recommended-sites {
    margin-top: 15px;
    font-weight: bold;
    color: #ffffff;
}

/* Transactions Section */
.transactions {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.2);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 30px;
}

.transaction-table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 10px 10px 0 0;
    font-weight: bold;
    text-align: center;
}

.table-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 15px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.deposit-info, .withdraw-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user {
    color: #888;
    font-size: 0.9rem;
}

.amount {
    color: #ffd700;
    font-weight: bold;
}

.currency {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Games Showcase */
.games-showcase {
    padding: 60px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

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

.game-title {
    padding: 20px;
    text-align: center;
    font-weight: bold;
    color: #ffd700;
}

/* Notification Popup */
.notification-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    border-radius: 15px;
    padding: 20px;
    z-index: 2000;
    backdrop-filter: blur(15px);
    border: 2px solid #ffd700;
    display: none;
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.popup-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.popup-title {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 15px;
}

.popup-buttons {
    display: flex;
    gap: 15px;
}

.btn-cancel, .btn-agree {
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-cancel {
    background: #666;
    color: white;
}

.btn-agree {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: white;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-top: 2px solid #ffd700;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}

.nav-item:hover {
    transform: translateY(-3px);
}

.nav-icon {
    font-size: 1.5rem;
    color: #ffd700;
}

.nav-item span {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: bold;
}

/* SEO Content */
.seo-content {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 80px;
}

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

.seo-content h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

.seo-content h2 {
    font-size: 2rem;
    color: #ffd700;
    margin: 40px 0 20px;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
}

.seo-content h3 {
    font-size: 1.5rem;
    color: #ffed4e;
    margin: 30px 0 15px;
}

.seo-content p {
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

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

.seo-content ol li {
    margin: 10px 0;
    color: #e0e0e0;
}

.security-features {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.security-features li {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    margin: 10px 0;
    border-left: 4px solid #ffd700;
    border-radius: 0 8px 8px 0;
    color: #e0e0e0;
}

.security-features li::before {
    content: '✓';
    color: #00ff88;
    font-weight: bold;
    margin-right: 10px;
}

/* Tables */
.bonus-table, .payment-table {
    margin: 40px 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

caption {
    background: #ffd700;
    color: #000;
    padding: 15px;
    font-weight: bold;
    font-size: 1.2rem;
}

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

th {
    background: rgba(255, 215, 0, 0.2);
    font-weight: bold;
    color: #ffd700;
}

td {
    color: #e0e0e0;
}

tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 0 120px;
    border-top: 2px solid #ffd700;
}

.footer-logos {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.logo-section {
    margin-bottom: 40px;
}

.footer .section-title {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: left;
}

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

.logo-grid img {
    height: 60px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.logo-grid img:hover {
    transform: scale(1.05);
}

.responsible-logos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.responsible-logos img {
    height: 60px;
    border-radius: 8px;
}

.footer-text {
    text-align: center;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-bonus {
        font-size: 2.5rem;
    }
    
    .social-icons {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }
    
    .partnership-badge {
        flex-direction: column;
        gap: 10px;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .footer-logos {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seo-content {
        padding: 40px 0;
    }
    
    .seo-content h1 {
        font-size: 2rem;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
    }
}