/* ========================================
   GLOBAL STYLES
   ======================================== */

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

:root {
    --primary-color: #2A9D8F;
    --secondary-color: #E9C46A;
    --dark-teal: #21867A;
    --light-teal: #3DB5A5;
    --dark-gold: #D4AF37;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #999999;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--light-teal));
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--dark-teal), var(--primary-color));
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-gold));
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--dark-gold), var(--secondary-color));
}

.btn-full {
    width: 100%;
    display: block;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-teal));
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%232A9D8F;stop-opacity:1" /><stop offset="100%" style="stop-color:%2321867A;stop-opacity:1" /></linearGradient></defs><circle cx="100" cy="100" r="80" fill="%23E9C46A" opacity="0.1"/><circle cx="1100" cy="500" r="100" fill="%23E9C46A" opacity="0.1"/><circle cx="600" cy="300" r="60" fill="%23ffffff" opacity="0.05"/><path d="M0,400 Q300,300 600,400 T1200,400 L1200,600 L0,600 Z" fill="url(%23grad)" opacity="0.3"/></svg>');
    background-size: cover;
    opacity: 0.3;
    animation: heroBackground 20s ease-in-out infinite;
}

@keyframes heroBackground {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.2));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 60px 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   TRUST BAR
   ======================================== */

.trust-bar {
    background: white;
    padding: 25px 0;
    box-shadow: var(--shadow-sm);
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-icon {
    font-size: 24px;
    color: var(--primary-color);
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-alt {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   CASINO CARDS
   ======================================== */

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.casino-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.casino-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.casino-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff, #fffef8);
}

.casino-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 4px 13px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.casino-logo {
    font-size: 60px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    flex-shrink: 0;
}

.casino-info {
    flex: 1;
}

.casino-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: var(--secondary-color);
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.casino-bonus-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--light-teal));
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.bonus-amount {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 5px;
}

.bonus-extra {
    font-size: 16px;
    opacity: 0.95;
}

.casino-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.feature {
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.casino-description {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
}

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

/* ========================================
   BONUS TABLE
   ======================================== */

.table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.bonus-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
}

.bonus-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-teal));
    color: white;
}

.bonus-table th {
    padding: 18px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.bonus-table td {
    padding: 18px;
    border-bottom: 1px solid var(--border-color);
}

.bonus-table tbody tr {
    transition: var(--transition);
}

.bonus-table tbody tr:hover {
    background: var(--bg-light);
}

.featured-row {
    background: #fffef8;
}

.featured-row:hover {
    background: #fffaed !important;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* ========================================
   BONUS CALCULATOR
   ======================================== */

.bonus-calculator {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-teal));
    color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.bonus-calculator h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.calculator-form {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-end;
    margin: 30px 0;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.calculator-result {
    background: rgba(255,255,255,0.2);
    padding: 25px;
    border-radius: 12px;
    font-size: 18px;
    margin-top: 20px;
    display: none;
}

.calculator-result.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.calculator-result h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.result-breakdown {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 20px;
}

.result-item {
    text-align: center;
}

.result-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.result-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

/* ========================================
   BONUS OFFERS GRID
   ======================================== */

.bonus-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.bonus-offer-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.bonus-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.bonus-offer-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.bonus-offer-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.offer-casino {
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.offer-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-terms {
    margin-bottom: 20px;
}

.offer-terms li {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

/* ========================================
   QUIZ SECTION (UNIQUE FEATURE)
   ======================================== */

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.quiz-progress {
    height: 8px;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0;
    transition: width 0.5s ease;
}

.quiz-question {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.quiz-question.active {
    display: block;
}

.quiz-question h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.quiz-options {
    display: grid;
    gap: 15px;
}

.quiz-option {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-family: inherit;
}

.quiz-option:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.quiz-result {
    display: none;
    text-align: center;
}

.quiz-result.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.quiz-result h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

#quizRecommendation {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

#quizRecommendation h4 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

#quizRecommendation p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ========================================
   GUIDES GRID
   ======================================== */

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.guide-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.guide-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: inline-block;
}

.guide-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.guide-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ========================================
   COMPARISON TOOL
   ======================================== */

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

.comparison-select {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.comparison-select label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.comparison-table-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    overflow-x: auto;
}

.comparison-placeholder {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    padding: 60px 20px;
}

.comparison-result {
    width: 100%;
}

.comparison-result th {
    background: var(--bg-light);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.comparison-result td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-result tbody tr:hover {
    background: var(--bg-light);
}

/* ========================================
   FAQ SECTION
   ======================================== */

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

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    font-family: inherit;
}

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

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-gray);
    line-height: 1.7;
}

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

/* ========================================
   RESPONSIBLE GAMBLING
   ======================================== */

.responsible-gambling {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: white;
}

.responsible-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.responsible-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.responsible-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.responsible-content > p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.responsible-links a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition);
}

.responsible-links a:hover {
    color: white;
}

.responsible-tips {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.responsible-tips strong {
    display: block;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.responsible-tips ul {
    max-width: 600px;
    margin: 0 auto;
}

.responsible-tips li {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section small {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    font-size: 24px;
    transition: var(--transition);
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.footer-bottom small {
    display: block;
    margin-top: 10px;
    color: var(--secondary-color);
}

/* ========================================
   MODALS
   ======================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: var(--text-gray);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--text-dark);
    background: var(--bg-light);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .casino-grid {
        grid-template-columns: 1fr;
    }

    .bonus-table {
        font-size: 14px;
    }

    .bonus-table th,
    .bonus-table td {
        padding: 12px 8px;
    }

    .calculator-form {
        flex-direction: column;
    }

    .bonus-offers-grid {
        grid-template-columns: 1fr;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .comparison-selector {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .trust-items {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 46px;
    }

    .section-title {
        font-size: 36px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}