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

body {
    font-family: 'Arial', sans-serif;
    background: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    font-size: 18px;
    color: #FFD700;
}

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

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

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

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

.btn-login {
    background: transparent;
    color: #ffffff;
    padding: 8px 20px;
    border: 1px solid #555;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-login:hover {
    border-color: #FFD700;
    color: #FFD700;
}

.btn-register {
    background: #FFD700;
    color: #1a1a1a;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: #FFC700;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2A1B3D 0%, #4A1A5C 50%, #8B1F72 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('donbet.png') center/cover;
    opacity: 0.1;
}

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

.hero-text {
    flex: 1;
    max-width: 500px;
}

.welcome-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid #FFD700;
}

.bonus-text {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.btn-cta {
    background: #FFD700;
    color: #1a1a1a;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-cta:hover {
    background: #FFC700;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    max-width: 400px;
}

/* Description Section */
.description {
    background: #222;
    padding: 40px 0;
    text-align: center;
}

.description p {
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto;
    color: #ccc;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    padding: 20px 0;
    text-align: center;
}

.promo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

/* Info Table */
.info-table {
    background: #1a1a1a;
    padding: 60px 0;
}

.table-header {
    background: linear-gradient(135deg, #B8860B 0%, #4A1A5C 100%);
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
}

.table-content {
    background: #333;
    overflow: hidden;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #444;
}

.table-row:first-child {
    background: #2a2a2a;
    font-weight: bold;
}

.table-cell {
    flex: 1;
    padding: 15px 20px;
    border-right: 1px solid #444;
}

.table-cell:last-child {
    border-right: none;
}

/* Main Content */
.main-content {
    background: #1a1a1a;
    padding: 60px 0;
}

.content-article {
    max-width: 800px;
    margin: 0 auto;
    background: #222;
    padding: 40px;
    border-radius: 10px;
}

.content-article h1 {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.content-article h2 {
    color: #ffffff;
    font-size: 24px;
    margin: 40px 0 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.content-article h3 {
    color: #FFD700;
    font-size: 20px;
    margin: 30px 0 15px;
}

.content-article p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.7;
}

.content-article ul, .content-article ol {
    margin: 20px 0 20px 30px;
    color: #ccc;
}

.content-article li {
    margin-bottom: 8px;
}

.info-table-detailed {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #333;
}

.info-table-detailed td {
    border: 1px solid #444;
    padding: 12px 15px;
    color: #ccc;
}

.info-table-detailed td:first-child {
    background: #2a2a2a;
    font-weight: bold;
    width: 30%;
}

.games-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #333;
}

.games-table th,
.games-table td {
    border: 1px solid #444;
    padding: 12px 15px;
    text-align: left;
}

.games-table th {
    background: #2a2a2a;
    color: #FFD700;
    font-weight: bold;
}

.games-table td {
    color: #ccc;
}

.banking-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #333;
}

.banking-table th,
.banking-table td {
    border: 1px solid #444;
    padding: 12px 15px;
    text-align: left;
}

.banking-table th {
    background: #2a2a2a;
    color: #FFD700;
    font-weight: bold;
}

.banking-table td {
    color: #ccc;
}

/* Author Bio */
.author-bio {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 4px solid #FFD700;
}

.author-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-avatar {
    flex-shrink: 0;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.author-description {
    font-size: 14px;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 10px;
}

.publish-date {
    font-size: 12px;
    color: #888;
}

/* Reviews Section */
.reviews {
    background: #1a1a1a;
    padding: 60px 0;
}

.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

.google-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.rating-score {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.star {
    color: #FFD700;
    font-size: 18px;
}

.star.half {
    color: #666;
}

.rating-count {
    color: #ccc;
    margin-left: 5px;
}

.leave-feedback {
    background: #FFD700;
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

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

.review-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: #FFD700;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.reviewer-name {
    font-weight: bold;
    color: #ffffff;
}

.review-date {
    font-size: 12px;
    color: #aaa;
}

.review-rating {
    margin-bottom: 10px;
}

.review-text {
    color: #ccc;
    line-height: 1.6;
}

.see-all-reviews {
    text-align: center;
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    padding: 12px 30px;
    border: 2px solid #FFD700;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #1a1a1a;
}

/* FAQ Section */
.faq {
    background: #222;
    padding: 60px 0;
}

.faq-item {
    background: #2a2a2a;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.faq-question {
    background: #333;
    padding: 20px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #FFD700;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #ccc;
    margin: 0;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    font-size: 18px;
    color: #FFD700;
}

.footer-links {
    display: flex;
    gap: 40px;
}

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #FFD700;
}

.footer-certifications {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 12px;
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0 15px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-text {
        font-size: 24px;
    }
    
    .table-row {
        flex-direction: column;
    }
    
    .table-cell {
        border-right: none;
        border-bottom: 1px solid #444;
    }
    
    .content-article {
        padding: 20px;
        margin: 0 10px;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .google-rating {
        flex-direction: column;
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-certifications {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .bonus-text {
        font-size: 20px;
    }
    
    .btn-cta {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .content-article h1 {
        font-size: 24px;
    }
    
    .content-article h2 {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
}