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

:root {
    --primary-color: #FFD700;
    --secondary-color: #FFA500;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --rating-color: #f39c12;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    font-weight: bold;
    display: inline-block;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
}

.hero-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.hero-home h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-home p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.hero-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-hover);
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.hero-badge {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.5rem;
}

.hero-rating {
    text-align: right;
}

.hero-rating .stars {
    font-size: 1.5rem;
    color: var(--rating-color);
}

.hero-rating .rating-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.hero-rating .review-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.hero-title h1 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hero-bonus {
    background: #fff3cd;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bonus-icon {
    font-size: 3rem;
}

.bonus-info {
    flex: 1;
}

.bonus-title {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.bonus-amount {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: bold;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
}

.feature-label {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.feature-value {
    display: inline-block;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.progress-bar {
    background: #e0e0e0;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--success-color), var(--primary-color));
    transition: width 0.3s;
}

.hero-promo {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.promo-badge {
    color: var(--success-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.promo-code {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    border: 2px dashed var(--primary-color);
}

.promo-code span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.copy-btn {
    background: var(--primary-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.copy-btn:hover {
    transform: scale(1.1);
}

.copy-btn:active {
    transform: scale(0.95);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-disclaimer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.75rem;
    color: var(--text-light);
}

.casino-list {
    padding: 3rem 0;
}

.casino-list h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.casino-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    gap: 1.5rem;
}

.casino-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.casino-rank {
    background: var(--primary-color);
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.casino-info {
    flex: 1;
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.casino-logo h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.logo-img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
}

.hero-logo {
    text-align: center;
    margin: 1rem 0;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
}

.casino-rating {
    text-align: right;
}

.stars {
    color: var(--rating-color);
    font-size: 1.2rem;
}

.star {
    margin: 0 1px;
}

.star.filled {
    color: var(--rating-color);
}

.star.half {
    background: linear-gradient(90deg, var(--rating-color) 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-value {
    display: inline-block;
    margin-left: 0.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.review-count {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
}

.casino-title h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.casino-bonus {
    background: #fff3cd;
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.casino-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.casino-promo {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.casino-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: var(--bg-white);
}

.casino-disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.content-section {
    background: var(--bg-white);
    padding: 3rem 0;
}

.content {
    max-width: 900px;
    margin: 0 auto;
}

.content h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content ul,
.content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content li {
    margin-bottom: 0.5rem;
}

.content strong {
    color: var(--text-dark);
}

.info-section {
    background: var(--bg-white);
    padding: 3rem 0;
}

.info-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.info-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.faq-section {
    background: var(--bg-light);
    padding: 3rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.faq-item {
    background: var(--bg-white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

th,
td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer .container {
    max-width: 1200px;
}

footer p {
    margin-bottom: 0.5rem;
}

footer .disclaimer {
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.mobile-open {
        max-height: 400px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    nav li {
        border-bottom: 1px solid var(--border-color);
    }
    
    nav a {
        display: block;
        padding: 1rem 20px;
    }
    
    .hero-home h1 {
        font-size: 1.8rem;
    }
    
    .hero-home p {
        font-size: 1rem;
    }
    
    .hero-title h1 {
        font-size: 1.5rem;
    }
    
    .casino-card {
        flex-direction: column;
    }
    
    .casino-rank {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .casino-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .casino-rating {
        text-align: left;
    }
    
    .casino-features {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .casino-actions {
        flex-direction: column;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .casino-promo {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .promo-code {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .casino-card {
        padding: 1.5rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .bonus-amount {
        font-size: 1.2rem;
    }
    
    .promo-code span {
        font-size: 1.2rem;
    }
}