/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #f7fafc;
}

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

/* ===== AGE NOTICE BANNER ===== */
.age-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    text-align: center;
}

.age-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.notice-link {
    color: #ffd700;
    text-decoration: underline;
    font-weight: 500;
}

.notice-link:hover {
    color: #ffed4e;
}

/* ===== HEADER ===== */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
}

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

.site-branding {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.site-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
}

.site-subtitle {
    color: #718096;
    font-size: 0.95rem;
}

.trust-badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge i {
    color: #48bb78;
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 80px 0;
    text-align: center;
}

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

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 50px;
    line-height: 1.7;
}

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

.highlight {
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.highlight-text {
    color: #718096;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.bookmaker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== BOOKMAKER CARDS ===== */
.bookmaker-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bookmaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

/* Featured card styles */
.bookmaker-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.bookmaker-card.featured {
    border: 2px solid #667eea;
}

/* Heritage card styles */
.bookmaker-card.heritage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #48bb78, #38a169);
}

.bookmaker-card.heritage {
    border: 2px solid #48bb78;
}

/* Classic card styles */
.bookmaker-card.classic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ed8936, #dd6b20);
}

.bookmaker-card.classic {
    border: 2px solid #ed8936;
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.bookmaker-info {
    display: flex;
    gap: 15px;
}

.bookmaker-logo {
    width: 80px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: #f7fafc;
    padding: 8px;
}

.bookmaker-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.established {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
}

.category {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
}

.rating {
    text-align: right;
    color: #4a5568;
}

.stars {
    color: #ffd700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Bonus Offer */
.bonus-offer {
    background: #f7fafc;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    text-align: center;
}

.offer-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.bet-amount, .get-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
}

.arrow {
    font-size: 1.5rem;
    color: #a0aec0;
    font-weight: 300;
}

.offer-details p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Features */
.features {
    margin-bottom: 25px;
}

.features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 0.9rem;
}

.features li i {
    color: #667eea;
    width: 16px;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.visit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.license {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #718096;
    font-size: 0.85rem;
}

.license i {
    color: #48bb78;
}

/* ===== RESPONSIBLE GAMBLING SECTION ===== */
.responsible-section {
    background: #f7fafc;
    padding: 100px 0;
}

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

.responsible-header {
    margin-bottom: 60px;
}

.responsible-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.responsible-title i {
    color: #e53e3e;
    font-size: 2.2rem;
}

.responsible-intro {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Principles */
.principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.principle {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.principle i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 20px;
    display: block;
}

.principle h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.principle p {
    color: #4a5568;
    line-height: 1.6;
}

/* Support Organizations */
.support-organizations h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 40px;
}

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

.org-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.org-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.org-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 12px;
    background: white;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.org-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.org-info p {
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.org-link, .contact-info {
    color: #667eea;
    font-weight: 500;
    font-size: 0.9rem;
}

.phone {
    display: block;
    margin-bottom: 5px;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #667eea;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-brand .logo i {
    font-size: 1.5rem;
    color: #667eea;
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 8px 0;
    color: #a0aec0;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    margin-bottom: 20px;
}

.disclaimer p {
    font-size: 0.9rem;
    color: #a0aec0;
    line-height: 1.6;
}

.copyright p {
    font-size: 0.85rem;
    color: #718096;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .site-branding {
        flex-direction: column;
        gap: 10px;
    }

    .site-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-highlights {
        gap: 40px;
    }

    .bookmaker-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .rating {
        text-align: left;
    }

    .offer-amount {
        flex-direction: column;
        gap: 10px;
    }

    .card-footer {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .features ul {
        grid-template-columns: 1fr;
    }

    .org-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .principles {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .responsible-title {
        flex-direction: column;
        gap: 10px;
        font-size: 2rem;
    }

    .support-organizations h3 {
        font-size: 1.6rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .comparison-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .bookmaker-card {
        padding: 25px;
    }

    .responsible-section {
        padding: 60px 0;
    }

    .responsible-title {
        font-size: 1.8rem;
    }

    .responsible-intro {
        font-size: 1rem;
    }

    .principle {
        padding: 25px;
    }
}

/* ===== ACCESSIBILITY ===== */
.visit-btn:focus,
.org-card:focus {
    outline: 3px solid #667eea;
    outline-offset: 3px;
}

.notice-link:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
    border-radius: 4px;
}

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

.bookmaker-card {
    animation: fadeInUp 0.6s ease-out;
}

.principle {
    animation: fadeInUp 0.6s ease-out;
}

.org-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== PRINT STYLES ===== */
@media print {
    .age-notice,
    .main-header,
    .hero-section,
    .main-footer {
        display: none;
    }

    .bookmaker-card {
        break-inside: avoid;
        margin-bottom: 20px;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
