/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f5f7fa;
}

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

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 24px;
}

.logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.feature-badge svg {
    width: 24px;
    height: 24px;
}

/* Betting Sites Section */
.betting-sites {
    padding: 60px 0;
}

.site-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    display: grid;
    grid-template-columns: auto 200px 140px 1fr auto auto;
    gap: 32px;
    align-items: center;
    transition: all 0.3s ease;
}

.site-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.site-rank {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rank-number {
    font-size: 36px;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.rank-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 24px 32px;
    border-radius: 12px;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.brand-logo {
    max-width: 140px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.site-card:hover .brand-logo {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.site-card:hover .site-logo {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

/* Logo placeholder styles removed - using actual brand images now */

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

.rating-score {
    font-size: 48px;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
    margin-bottom: 8px;
}

.rating-stars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-stars span:first-child {
    color: #ffd700;
    font-size: 16px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

.site-features {
            min-width: 220px;
}

.site-features h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.site-features ul {
    list-style: none;
}

.site-features li {
    font-size: 14px;
    color: #555;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.site-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.site-bonus {
    text-align: center;
    min-width: 180px;
}

.bonus-tag {
    background: #f0f4ff;
    color: #667eea;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block;
}

.bonus-text {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.site-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    display: inline-block;
    text-align: center;
    min-width: 140px;
}

.site-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Info Section */
.info-section {
    background: #ffffff;
    padding: 80px 0;
}

.info-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 48px 0 24px 0;
}

.info-content h2:first-child {
    margin-top: 0;
}

.info-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.info-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.rating-criteria {
    margin: 32px 0;
}

.criteria-item {
    margin-bottom: 24px;
}

.criteria-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.criteria-name {
    font-weight: 700;
    color: #1a1a1a;
}

.criteria-weight {
    font-weight: 700;
    color: #667eea;
}

.criteria-bar {
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.criteria-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    transition: width 0.6s ease;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.sport-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.sport-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.sport-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.tips-list {
    list-style: none;
    margin: 32px 0;
}

.tips-list li {
    padding: 16px 24px;
    background: #f8fafc;
    margin-bottom: 12px;
    border-radius: 12px;
    font-size: 15px;
    color: #555;
    padding-left: 52px;
    position: relative;
}

.tips-list li:before {
    content: "💡";
    position: absolute;
    left: 20px;
    font-size: 20px;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    margin-top: 48px;
}

.cta-box h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px 0;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

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

.responsible-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding: 24px 0;
}

.responsible-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.responsible-logos a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.responsible-logos img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-size: 14px;
}

.disclaimer {
    font-weight: 700;
    color: #fbbf24;
}

/* Page Header (for static pages) */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.95;
}

/* Page Content (for static pages) */
.page-content {
    padding: 80px 0;
    background: #ffffff;
}

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

.content-wrapper h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 48px 0 24px 0;
    padding-top: 16px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
    padding-top: 0;
}

.content-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 32px 0 16px 0;
}

.content-wrapper h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 24px 0 12px 0;
}

.content-wrapper p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-wrapper ul {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin: 20px 0;
    padding-left: 40px;
}

.content-wrapper ul li {
    margin-bottom: 12px;
}

.content-wrapper a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

/* Contact Box */
.contact-box {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.contact-item {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-box p {
    margin-bottom: 12px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

/* Notice Box */
.notice-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 32px;
    border-radius: 12px;
    margin: 48px 0;
}

.notice-box h3 {
    font-size: 22px;
    color: #92400e;
    margin: 0 0 16px 0;
}

.notice-box p {
    color: #78350f;
    margin-bottom: 12px;
}

.notice-box p:last-child {
    margin-bottom: 0;
}

/* Alert Box */
.alert-box {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-left: 4px solid #dc2626;
    padding: 32px;
    border-radius: 12px;
    margin: 0 0 48px 0;
}

.alert-box h3 {
    font-size: 22px;
    color: #991b1b;
    margin: 0 0 16px 0;
}

.alert-box p {
    color: #7f1d1d;
    margin-bottom: 0;
}

/* Mission Grid (About page) */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.mission-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-4px);
}

.mission-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.mission-card h3 {
    font-size: 20px;
    margin: 0 0 12px 0;
}

.mission-card p {
    font-size: 15px;
    margin: 0;
}

/* Review Process (About page) */
.review-process {
    margin: 32px 0;
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
}

.step-content h3 {
    font-size: 22px;
    margin: 0 0 12px 0;
}

.step-content p {
    font-size: 16px;
    margin: 0;
}

/* Trust List */
.trust-list {
    list-style: none;
    padding: 0;
}

.trust-list li {
    padding: 16px 24px;
    background: #f8fafc;
    margin-bottom: 12px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

/* Values Section */
.values-section {
    margin: 32px 0;
}

.value-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.value-item h3 {
    margin: 0 0 12px 0;
}

.value-item p {
    margin: 0;
}

/* Cookie Table */
.cookie-table {
    margin: 32px 0;
}

.cookie-category {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid #667eea;
}

.cookie-category h3 {
    margin: 0 0 16px 0;
}

.cookie-category p {
    margin: 8px 0;
    font-size: 15px;
}

/* Principles Grid (Responsible Betting) */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.principle-card {
    background: #f8fafc;
    padding: 28px;
    border-radius: 12px;
    text-align: center;
}

.principle-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.principle-card h3 {
    font-size: 20px;
    margin: 0 0 12px 0;
}

.principle-card p {
    font-size: 15px;
    margin: 0;
}

/* Warning Signs */
.warning-signs {
    margin: 32px 0;
}

.warning-category {
    background: #fef3c7;
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid #f59e0b;
}

.warning-category h3 {
    color: #92400e;
    margin: 0 0 16px 0;
}

.warning-category ul {
    margin: 0;
    color: #78350f;
}

/* Tools Section */
.tools-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.tool-item {
    background: #f0f9ff;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #0284c7;
}

.tool-item h3 {
    font-size: 18px;
    color: #0c4a6e;
    margin: 0 0 12px 0;
}

.tool-item p {
    font-size: 15px;
    color: #0c4a6e;
    margin: 0;
}

/* Exclusion Info */
.exclusion-info {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.exclusion-info h3 {
    margin: 0 0 16px 0;
}

.exclusion-info ul {
    margin: 16px 0;
}

/* Support Resources */
.support-resources {
    margin: 32px 0;
}

.resource-card {
    background: #f0fdf4;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid #10b981;
}

.resource-card h3 {
    font-size: 24px;
    color: #065f46;
    margin: 0 0 24px 0;
}

.resource-list {
    display: grid;
    gap: 20px;
}

.resource-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
}

.resource-item strong {
    display: block;
    font-size: 18px;
    color: #065f46;
    margin-bottom: 8px;
}

.resource-item p {
    font-size: 15px;
    color: #047857;
    margin: 4px 0;
}

/* Family Tips */
.family-tips {
    list-style: none;
    padding: 0;
}

.family-tips li {
    padding: 16px 24px;
    background: #fef3c7;
    margin-bottom: 12px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    color: #78350f;
}

/* Protection Measures */
.protection-measures {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.protection-measures h3 {
    margin: 0 0 16px 0;
}

/* Smart Tips */
.smart-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.tip-box {
    background: #f0f9ff;
    padding: 28px;
    border-radius: 12px;
    border-left: 4px solid #0284c7;
}

.tip-box h3 {
    color: #0c4a6e;
    margin: 0 0 16px 0;
}

.tip-box ul {
    margin: 0;
    padding-left: 24px;
    color: #0c4a6e;
}

/* Myths Section */
.myths-section {
    margin: 32px 0;
}

.myth-item {
    background: #f8fafc;
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.myth-item h4 {
    color: #dc2626;
    margin: 0 0 8px 0;
    font-size: 18px;
}

.myth-item p {
    color: #10b981;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* Help Banner */
.help-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    margin: 48px 0;
}

.help-banner h3 {
    font-size: 32px;
    margin: 0 0 16px 0;
    color: #ffffff;
}

.help-banner p {
    font-size: 18px;
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive Design */

/* Large tablets and small desktops (1024px - 1280px) */
@media (max-width: 1280px) {
    .site-card {
        grid-template-columns: 80px 180px 120px 1fr 160px 140px;
        gap: 20px;
        padding: 28px;
    }
    
    .rank-number {
        font-size: 32px;
    }
    
    .brand-logo {
        max-width: 130px;
        max-height: 45px;
    }
    
    .site-logo {
        min-width: 160px;
        padding: 20px 28px;
    }
    
    .rating-score {
        font-size: 40px;
    }
    
    .site-features {
        min-width: 220px;
    }
    
    .site-features li {
        font-size: 13px;
    }
    
    .site-bonus {
        min-width: 160px;
    }
    
    .bonus-text {
        font-size: 14px;
    }
}

/* Tablets landscape and medium screens (900px - 1024px) */
@media (max-width: 1024px) {
    .site-card {
        grid-template-columns: 70px 1fr 110px;
        gap: 24px;
        padding: 28px;
    }
    
    .site-rank {
        grid-column: 1;
        grid-row: 1 / 3;
    }
    
    .site-logo {
        grid-column: 2;
        grid-row: 1;
        justify-content: flex-start;
    }
    
    .site-rating {
        grid-column: 3;
        grid-row: 1;
        text-align: center;
    }
    
    .site-features {
        grid-column: 2 / 4;
        grid-row: 2;
    }
    
    .site-bonus {
        grid-column: 1 / 4;
        grid-row: 3;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        border-top: 1px solid #e5e7eb;
        margin-top: 16px;
        padding-top: 20px;
    }
    
    .site-button {
        grid-column: 1 / 4;
        grid-row: 4;
        max-width: 300px;
        margin: 0 auto;
        width: 100%;
    }
    
    /* Info section adaptations */
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rating-criteria {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tips-list {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Tablets portrait and square monitors (768px - 900px) */
@media (max-width: 900px) {
    .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .site-card {
        grid-template-columns: 60px 1fr 100px;
        gap: 20px;
        padding: 24px;
    }
    
    .rank-number {
        font-size: 28px;
    }
    
    .rank-badge {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .brand-logo {
        max-width: 120px;
        max-height: 40px;
    }
    
    .site-logo {
        min-width: 140px;
        padding: 18px 24px;
    }
    
    .rating-score {
        font-size: 36px;
    }
    
    .rating-stars span:first-child {
        font-size: 14px;
    }
    
    .rating-text {
        font-size: 12px;
    }
    
    .site-features h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .site-features li {
        font-size: 13px;
        padding: 3px 0;
    }
    
    .bonus-tag {
        font-size: 11px;
        padding: 5px 14px;
    }
    
    .bonus-text {
        font-size: 14px;
    }
    
    .site-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    /* Info sections */
    .info-section {
        padding: 60px 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .sports-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-box {
        padding: 40px 28px;
    }
    
    .cta-box h3 {
        font-size: 28px;
    }
}

/* Mobile and small tablets (up to 768px) */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        gap: 12px;
    }
    
    .feature-badge {
        font-size: 13px;
        padding: 10px 18px;
    }
    
    .feature-badge svg {
        width: 20px;
        height: 20px;
    }
    
    /* Полностью вертикальная раскладка карточек */
    .site-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
        text-align: center;
    }
    
    .site-rank {
        grid-row: auto;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }
    
    .rank-number {
        font-size: 32px;
    }
    
    .rank-badge {
        align-self: center;
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .site-logo {
        grid-column: auto;
        grid-row: auto;
        justify-content: center;
    }
    
    .brand-logo {
        max-width: 140px;
        max-height: 48px;
    }
    
    .site-logo {
        min-width: 200px;
        padding: 20px 32px;
    }
    
    .site-rating {
        grid-column: auto;
        grid-row: auto;
        text-align: center;
    }
    
    .rating-score {
        font-size: 44px;
    }
    
    .rating-stars {
        align-items: center;
    }
    
    .site-features {
        grid-column: auto;
        grid-row: auto;
        text-align: left;
        max-width: 100%;
    }
    
    .site-features h3 {
        text-align: center;
        font-size: 16px;
    }
    
    .site-features ul {
        display: inline-block;
        text-align: left;
    }
    
    .site-bonus {
        grid-column: auto;
        grid-row: auto;
        text-align: center;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
        padding: 20px 0;
        margin: 10px 0;
    }
    
    .site-button {
        grid-column: auto;
        grid-row: auto;
        max-width: 100%;
    }
    
    .info-content h2 {
        font-size: 28px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header {
        padding: 60px 0 40px 0;
    }
    
    .page-content {
        padding: 60px 0;
    }
    
    .content-wrapper h2 {
        font-size: 28px;
    }
    
    .content-wrapper h3 {
        font-size: 20px;
    }
    
    .mission-grid,
    .principles-grid,
    .tools-section,
    .smart-tips {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        grid-template-columns: 50px 1fr;
        gap: 16px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .contact-box,
    .notice-box,
    .alert-box,
    .help-banner {
        padding: 24px;
    }
    
    .help-banner h3 {
        font-size: 24px;
    }
    
    .help-banner p {
        font-size: 16px;
    }
}

/* Small mobile devices (up to 640px) */
@media (max-width: 640px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .feature-badge {
        font-size: 12px;
        padding: 8px 14px;
        flex: 1 1 auto;
        justify-content: center;
    }
    
    .betting-sites {
        padding: 40px 0;
    }
    
    .site-card {
        padding: 20px;
        gap: 16px;
    }
    
    .rank-number {
        font-size: 28px;
    }
    
    .brand-logo {
        max-width: 120px;
        max-height: 40px;
    }
    
    .site-logo {
        min-width: 160px;
        padding: 16px 28px;
    }
    
    .rating-score {
        font-size: 40px;
    }
    
    .site-features h3 {
        font-size: 15px;
    }
    
    .site-features li {
        font-size: 13px;
    }
    
    .bonus-tag {
        font-size: 10px;
    }
    
    .bonus-text {
        font-size: 13px;
    }
    
    .site-button {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .info-section {
        padding: 60px 0;
    }
    
    .info-content h2 {
        font-size: 24px;
    }
    
    .info-content p {
        font-size: 16px;
    }
}

/* Extra small mobile devices (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo img {
        width: 36px;
        height: 36px;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature-badge {
        width: 100%;
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .betting-sites {
        padding: 30px 0;
    }
    
    .site-card {
        padding: 16px;
        gap: 14px;
        margin-bottom: 20px;
    }
    
    .rank-number {
        font-size: 24px;
    }
    
    .rank-badge {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .brand-logo {
        max-width: 110px;
        max-height: 36px;
    }
    
    .site-logo {
        min-width: 140px;
        padding: 14px 24px;
    }
    
    .rating-score {
        font-size: 36px;
    }
    
    .rating-stars span:first-child {
        font-size: 13px;
        letter-spacing: 1px;
    }
    
    .rating-text {
        font-size: 11px;
    }
    
    .site-features {
        padding: 0 10px;
    }
    
    .site-features h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .site-features li {
        font-size: 12px;
        padding: 2px 0;
    }
    
    .site-bonus {
        padding: 16px 0;
        margin: 8px 0;
    }
    
    .bonus-tag {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .bonus-text {
        font-size: 13px;
    }
    
    .site-button {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .info-section {
        padding: 50px 0;
    }
    
    .info-content h2 {
        font-size: 22px;
        margin: 28px 0 16px 0;
    }
    
    .info-content p {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .info-card {
        padding: 24px;
    }
    
    .info-icon {
        width: 56px;
        height: 56px;
    }
    
    .info-card h3 {
        font-size: 18px;
    }
    
    .info-card p {
        font-size: 14px;
    }
    
    .cta-box {
        padding: 32px 20px;
    }
    
    .cta-box h3 {
        font-size: 24px;
    }
    
    .cta-box p {
        font-size: 16px;
    }
    
    .page-header {
        padding: 40px 0 30px 0;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
    
    .page-subtitle {
        font-size: 15px;
    }
    
    .page-content {
        padding: 40px 0;
    }
    
    .content-wrapper h2 {
        font-size: 22px;
        margin: 28px 0 16px 0;
    }
    
    .content-wrapper h3 {
        font-size: 18px;
    }
    
    .content-wrapper p,
    .content-wrapper ul {
        font-size: 15px;
    }
    
    .content-wrapper ul {
        padding-left: 24px;
    }
    
    .contact-box,
    .notice-box,
    .alert-box {
        padding: 20px;
    }
    
    .help-banner {
        padding: 28px 16px;
    }
    
    .help-banner h3 {
        font-size: 20px;
    }
    
    .help-banner p {
        font-size: 15px;
    }
    
    .resource-card,
    .exclusion-info,
    .protection-measures {
        padding: 20px;
    }
    
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-content {
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .responsible-logos {
        gap: 20px;
        padding: 20px 0;
        margin-bottom: 24px;
    }
    
    .responsible-logos img {
        height: 32px;
        max-width: 90px;
    }
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
    .responsible-logos {
        gap: 24px;
        padding: 20px 0;
    }
    
    .responsible-logos img {
        height: 36px;
        max-width: 100px;
    }
}

/* Адаптивность для маленьких экранов */
@media (max-width: 640px) {
    .responsible-logos {
        gap: 16px;
    }
    
    .responsible-logos img {
        height: 30px;
        max-width: 80px;
    }
}
