* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a3a6b;
    --secondary-color: #d4af37;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
    --bg-dark: #1e1e1e;
    --success: #27ae60;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navigation a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.navigation a:hover {
    color: #1a3a6b;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1a1a1a;
    padding: 0.5rem;
}

.mobile-menu-toggle:hover {
    color: #1a3a6b;
}

/* Hero Section */
.hero {
    background: white;
    color: #1a1a1a;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
}

/* Casinos Section */
.casinos-section {
    padding: 3rem 0;
    background: white;
}

.casinos-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.casino-card {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.casino-card:hover {
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.casino-card.featured {
    background: white;
    border-color: #ffc107;
}

.casino-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: #666;
    min-width: 40px;
    text-align: center;
}

.casino-card.featured .casino-rank {
    color: #ff9800;
}

.casino-badge {
    position: absolute;
    top: -8px;
    left: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(238, 90, 111, 0.4);
}

.casino-logo {
    min-width: 160px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.casino-logo-img {
    width: 120px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.casino-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.casino-logo-text h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0;
}

.payment-icons {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.payment-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.payment-icon.visa { background: linear-gradient(135deg, #1a1f71 0%, #0d47a1 100%); }
.payment-icon.btc { background: linear-gradient(135deg, #f7931a 0%, #ff9800 100%); }
.payment-icon.eth { background: linear-gradient(135deg, #627eea 0%, #3f51b5 100%); }
.payment-icon.usdt { background: linear-gradient(135deg, #26a17b 0%, #009688 100%); }

.casino-offer {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.casino-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.btn-review {
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
    border: 2px solid #ddd;
    white-space: nowrap;
}

.btn-review:hover {
    border-color: #1a3a6b;
    color: #1a3a6b;
}

.btn-play {
    padding: 0.6rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #4285f4 0%, #1565c0 100%);
    color: white;
    border: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}

.btn-play:hover {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.4);
    transform: translateY(-1px);
}

/* Content Section */
.content-section {
    background: white;
    padding: 3rem 0;
}

.main-article {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.main-article h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.main-article h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.main-article p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    text-align: justify;
    color: #333;
}

.feature-list {
    background: #f8f9fa;
    padding: 1.2rem 1.5rem;
    border-left: 3px solid var(--secondary-color);
    margin: 1.5rem 0;
    list-style-position: inside;
}

.feature-list li {
    padding: 0.4rem 0;
    font-size: 1rem;
}

.numbered-list {
    padding-left: 1.5rem;
    margin: 1.2rem 0;
}

.numbered-list li {
    padding: 0.4rem 0;
    font-size: 1rem;
}

.info-box {
    background: #e3f2fd;
    border-left: 3px solid var(--primary-color);
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.info-box p {
    margin: 0;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 3rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.faq-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    border-left: 3px solid var(--secondary-color);
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: var(--text-light);
    padding: 2.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.age-restriction {
    background: var(--accent-color);
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.2rem;
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .casino-card {
        flex-wrap: wrap;
    }
    
    .casino-offer {
        width: 100%;
        order: 3;
        margin-top: 0.8rem;
    }
    
    .casino-logo {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.8rem 0;
    }
    
    .logo img {
        height: 70px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid #e5e5e5;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .navigation.active {
        display: block;
    }
    
    .navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    .navigation li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .navigation a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .navigation a:hover {
        background: #f8f9fa;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero h2 {
        font-size: 1.4rem !important;
    }
    
    .casino-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .casino-rank {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .casino-badge {
        top: 0.8rem;
        left: 1rem;
    }
    
    .casino-logo {
        margin-top: 1.5rem;
        width: 100%;
        min-width: auto;
    }
    
    .casino-logo-img {
        width: 100px;
    }
    
    .casino-offer {
        width: 100%;
        margin-top: 0.8rem;
    }
    
    .casino-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .btn-review,
    .btn-play {
        flex: 1;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-article h1 {
        font-size: 1.8rem;
    }
    
    .main-article h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero h2 {
        font-size: 1.2rem !important;
        margin-top: 1.5rem !important;
    }
    
    .casino-actions {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .btn-review,
    .btn-play {
        width: 100%;
    }
    
    .payment-icons {
        justify-content: flex-start;
    }
    
    .casino-logo {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .casino-logo-img {
        width: 80px;
    }
}