/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
    /* Add this to prevent body scroll when menu is open */
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

body.menu-open {
    overflow: hidden;
    /* Prevent vertical scroll when menu is open */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    position: fixed;
    /* Changed to fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Ensure header is always on top */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Added shadow for fixed header */
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 30l15-15v30l-15-15zm0 0l-15 15h30l-15-15z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    /* Needed for z-index of children */
}

.logo h1 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    /* Ensure no default margin */
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    /* Ensure no default margin */
    padding: 0;
    /* Ensure no default padding */
}

.nav-link {
    text-decoration: none;
    color: white;
    /* Changed to white for header background */
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    /* Added padding for better hover area */
    border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: #bae6fd;
    /* Lighter blue on hover/active */
    background-color: rgba(255, 255, 255, 0.1);
    /* Subtle background on hover */
}

.country-flag img {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Hamburger button */
.hamburger {
    display: none;
    /* Hidden by default on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
    /* Above mobile menu and overlay */
    position: relative;
    /* Needed for z-index to work */
}

.hamburger span {
    height: 3px;
    background: white;
    /* Hamburger lines color */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger active state (X icon) */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    /* Adjusted translate for better X */
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    /* Adjusted translate for better X */
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    z-index: 999;
    /* Below mobile menu, above content */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Main content padding to avoid being hidden by fixed header */
main {
    padding-top: 64px;
    /* Adjust this value based on your header's actual height */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50L25 25v50l25-25zm0 0l25 25H25l25-25z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E") repeat;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Filters Section */
.filters-section {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 64px;
    /* Adjusted for fixed header height */
    z-index: 90;
    /* Below header, above content */
}

.filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-label,
.sort-label {
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    min-width: 200px;
}

/* Betting Sites Section */
.betting-sites {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    z-index: 1;
}

.betting-sites::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
    transform: scale(1.1); /* Kenarlarda bulanıklığı kırpmamak için biraz büyüt */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.sites-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.site-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.site-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
}

.site-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-rank {
    position: absolute;
    top: -10px;
    left: 2rem;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.card-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 2rem;
    align-items: center;
}

.site-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.site-logo img {
    width: 120px;
    object-fit: contain;
    border-radius: 8px;
}

.site-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-score {
    font-weight: 600;
    color: #374151;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature {
    font-size: 0.9rem;
    color: #059669;
    font-weight: 500;
}

.bonus-info {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    border: 1px solid #bae6fd;
}

.bonus-amount {
    
    font-weight: 700;
    color: #0369a1;
    margin-bottom: 0.5rem;
}

.bonus-details {
    font-size: 0.9rem;
    color: #0c4a6e;
    font-weight: 500;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.info-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3b82f6;
}

.responsible-gambling {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.responsible-gambling img {
    width: 40px;
    height: 40px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.disclaimer {
    background: #374151;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.disclaimer p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #d1d5db;
}

.disclaimer a {
    color: #3b82f6;
    text-decoration: none;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.certifications {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.certifications img {
    height: 30px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        /* Show hamburger on mobile */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        /* Position from top of viewport */
        right: -100%;
        /* Hidden off-screen to the right */
        width: 280px;
        /* Width of the mobile menu */
        height: 100vh;
        /* Full viewport height */
        background: linear-gradient(135deg, #1e3a8a, #3b82f6);
        /* Mobile menu background */
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem 2rem;
        /* Space for header and content */
        transition: right 0.3s ease;
        /* Smooth slide-in/out */
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        /* Shadow on the left edge */
        z-index: 1000;
        /* Below hamburger, above overlay */
        gap: 0;
        /* Reset gap for vertical menu */
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        /* Light border */
    }

    .nav-menu.active {
        right: 0;
        /* Slide in when active */
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .nav-link {
        display: block;
        /* Make links full width */
        width: 100%;
        padding: 1rem 1.5rem;
        color: white;
        /* White text for mobile menu */
        font-size: 1.1rem;
        border-radius: 8px;
        border: 1px solid transparent;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateX(5px);
    }

    .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    /* Hide country flag in desktop header on mobile */
    .nav-container>.country-flag {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }

    .card-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .site-info {
        flex-direction: column;
        text-align: center;
    }

    .card-actions {
        flex-direction: row;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile menu item animations */
    .nav-menu li {
        opacity: 0;
        transform: translateX(20px);
        animation: slideInRight 0.3s ease forwards;
    }

    .nav-menu.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        animation-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(4) {
        animation-delay: 0.25s;
    }

    .nav-menu.active li:nth-child(5) {
        animation-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(6) {
        animation-delay: 0.35s;
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .site-card {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .filter-buttons {
        justify-content: center;
    }

    .card-actions {
        flex-direction: column;
    }
}

/* Animation for site cards */
.site-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.site-card:nth-child(1) {
    animation-delay: 0.1s;
}

.site-card:nth-child(2) {
    animation-delay: 0.2s;
}

.site-card:nth-child(3) {
    animation-delay: 0.3s;
}

.site-card:nth-child(4) {
    animation-delay: 0.4s;
}

.site-card:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #3b82f6;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Additional Styles for New Pages */

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    padding: 3rem 0;
    text-align: center;
    color: white;
    margin-top: 64px;
    /* Adjusted for fixed header height */
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Sports Page Styles */
.sports-overview {
    padding: 4rem 0;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.sport-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sport-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.sport-card.featured {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.sport-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.sport-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.sport-info p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sport-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.sport-stats span {
    font-size: 0.9rem;
    color: #059669;
    font-weight: 500;
}

.sport-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.sport-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Sport Details Section */
.sport-details {
    padding: 4rem 0;
    background: #f8fafc;
}

.sport-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.sport-bookmakers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.bookmaker-rank {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.rank-number {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.bookmaker-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bookmaker-info img {
    width: 80px;
    height: 40px;
    object-fit: contain;
}

.bookmaker-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.rating {
    font-size: 0.9rem;
    color: #6b7280;
}

.football-features {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.football-features span {
    font-size: 0.85rem;
    color: #059669;
    font-weight: 500;
}

.bonus-info {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #0369a1;
}

/* Sport Guide */
.sport-guide {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sport-guide h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guide-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #374151;
}

.guide-item ul {
    list-style: none;
    padding: 0;
}

.guide-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #6b7280;
}

.guide-item li:last-child {
    border-bottom: none;
}

/* Betting Calendar */
.betting-calendar {
    padding: 4rem 0;
    background: white;
}

.betting-calendar h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-date {
    text-align: center;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    border-radius: 8px;
    padding: 0.75rem;
    min-width: 60px;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

.event-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.event-info p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.event-time {
    font-size: 0.85rem;
    color: #374151;
    font-weight: 500;
}

.event-odds {
    display: flex;
    gap: 0.5rem;
}

.event-odds span {
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    border: 1px solid #d1d5db;
}

/* Guides Page Styles */
.guides-categories {
    padding: 4rem 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.tab-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.guide-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-level {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.guide-content {
    padding: 1.5rem;
}

.guide-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
    line-height: 1.3;
}

.guide-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.guide-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.guide-topics {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.topic {
    background: #f1f5f9;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Featured Guide */
.featured-guide {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.featured-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.featured-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.guide-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature {
    font-size: 0.95rem;
    color: #059669;
    font-weight: 500;
}

.featured-image img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Quick Tips */
.quick-tips {
    padding: 4rem 0;
}

.quick-tips h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.tip-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.tip-card p {
    color: #6b7280;
    line-height: 1.5;
}

/* Reviews Page Styles */
.reviews-section {
    padding: 4rem 0;
}

.review-card {
    background: white;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.review-header {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.bookmaker-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.bookmaker-logo {
    width: 160px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
}

.bookmaker-details h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.overall-rating .stars {
    color: #fbbf24;
    font-size: 1.3rem;
}

.overall-rating .rating-score {
    font-weight: 600;
    color: #374151;
    font-size: 1.1rem;
}

.license-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.license-badge {
    background: #059669;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.established {
    color: #6b7280;
    font-size: 0.9rem;
}

.bonus-highlight {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #3b82f6;
}

.bonus-highlight .bonus-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0369a1;
    margin-bottom: 0.5rem;
}

.bonus-text {
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 500;
}

.review-content {
    padding: 2rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pros,
.cons {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.pros h3 {
    color: #059669;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.cons h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros li,
.cons li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.pros li:last-child,
.cons li:last-child {
    border-bottom: none;
}

.rating-breakdown {
    margin-bottom: 2rem;
}

.rating-breakdown h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.rating-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 1rem;
    align-items: center;
}

.rating-bar {
    background: #e5e7eb;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.detailed-review h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.detailed-review h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    color: #374151;
}

.detailed-review p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Bonus Page Styles */
.bonus-section {
    padding: 4rem 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.bonus-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.bonus-card.featured {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    left: 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.bookmaker-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bookmaker-logo img {
    width: 120px;
    height: 60px;
    object-fit: contain;
}

.bonus-details h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.bonus-amount {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #0369a1;
    margin-bottom: 0.5rem;
}

.bonus-type {
    text-align: center;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1rem;
}

.bonus-description {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bonus-description p {
    color: #374151;
    font-weight: 500;
}

.bonus-conditions {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.bonus-conditions h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #374151;
}

.bonus-conditions ul {
    list-style: none;
    padding: 0;
}

.bonus-conditions li {
    padding: 0.25rem 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.bonus-actions {
    text-align: center;
}

.bonus-code {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.bonus-guide {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bonus-guide h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.guide-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.bonus-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.bonus-type-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.bonus-type-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #374151;
}

.bonus-type-card p {
    color: #6b7280;
    line-height: 1.5;
}

.conditions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.condition-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.condition-item strong {
    color: #1f2937;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.contact-details p {
    color: #374151;
    margin-bottom: 0.25rem;
}

.contact-details small {
    color: #6b7280;
    font-size: 0.85rem;
}

.faq-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Legal Pages Styles */
.legal-page {
    padding: 4rem 0;
    background: #f8fafc;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.legal-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.privacy-intro,
.terms-intro {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #3b82f6;
}

.privacy-intro p,
.terms-intro p {
    color: #0c4a6e;
    line-height: 1.6;
    margin: 0;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: #374151;
}

.legal-info p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-info ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-info li {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-info strong {
    color: #374151;
    font-weight: 600;
}

.legal-info a {
    color: #3b82f6;
    text-decoration: none;
}

.legal-info a:hover {
    text-decoration: underline;
}

.legal-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 2rem;
}

.legal-footer p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .sports-grid {
        grid-template-columns: 1fr;
    }

    .bookmaker-rank {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .featured-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-text h2 {
        font-size: 2rem;
    }

    .guide-features {
        grid-template-columns: 1fr;
    }

    .review-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .rating-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .bonus-types {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 2rem;
    }

    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }

    .sport-card {
        padding: 1.5rem;
    }

    .bonus-amount {
        font-size: 2.5rem;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .legal-page h1 {
        font-size: 2rem;
    }

    .event-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .calendar-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Interactive Elements */
.guide-card[style*="display: none"] {
    display: none !important;
}

.tab-btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.sport-card:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn-primary,
    .btn-secondary,
    .sport-btn,
    .hamburger
    /* Hide hamburger on print */
    ,
    .mobile-overlay

    /* Hide overlay on print */
        {
        display: none !important;
    }

    .legal-content {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }

    .page-hero {
        background: none;
        color: #1f2937;
    }
}

/* Responsible Gambling Section Styles */
.responsible-gambling-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    border-top: 3px solid #dc2626;
    position: relative;
}

.responsible-gambling-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #f59e0b, #10b981);
}

/* Header Section */
.responsible-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.responsible-icon .age-restriction {
    width: 60px;
    height: 60px;
    border: 3px solid #dc2626;
    border-radius: 50%;
    background: white;
    padding: 8px;
}

.responsible-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.responsible-title p {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Main Content */
.responsible-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Warning */
.main-warning {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid #fca5a5;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.warning-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.warning-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 1rem;
}

.warning-content p {
    color: #7f1d1d;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsible Grid */
.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.responsible-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
}

.responsible-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.responsible-card:nth-child(1) {
    border-top: 4px solid #10b981;
}

.responsible-card:nth-child(2) {
    border-top: 4px solid #f59e0b;
}

.responsible-card:nth-child(3) {
    border-top: 4px solid #3b82f6;
}

.responsible-card:nth-child(4) {
    border-top: 4px solid #dc2626;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.responsible-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.responsible-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.responsible-card li {
    padding: 0.5rem 0;
    color: #6b7280;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 1.5rem;
}

.responsible-card li:last-child {
    border-bottom: none;
}

.responsible-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Help Contacts */
.help-contacts {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.help-contacts h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-logo img {
    width: 120px;
    height: 40px;
    object-fit: contain;
}

.contact-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Regulation Info */
.regulation-info {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.regulation-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.regulation-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.regulation-text p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.regulation-points {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.regulation-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.point-icon {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.regulation-point span:last-child {
    color: #374151;
    font-weight: 500;
}

.regulation-logos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.anj-logo,
.rf-logo {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem;
    background: white;
}

/* Legal Disclaimer */
.legal-disclaimer {
    background: linear-gradient(135deg, #fefce8, #fef3c7);
    border: 2px solid #fbbf24;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.1);
}

.disclaimer-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #92400e;
    text-align: center;
    margin-bottom: 2rem;
}

.disclaimer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.disclaimer-section {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.disclaimer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 1rem;
}

.disclaimer-section p {
    color: #78350f;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Self Assessment */
.self-assessment {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.self-assessment h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1.5rem;
}

.assessment-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.assessment-intro p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
}

.assessment-questions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.question-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.question-item:hover {
    background: #f1f5f9;
}

.assessment-checkbox {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
}

.question-item label {
    color: #374151;
    line-height: 1.5;
    cursor: pointer;
    font-weight: 500;
}

.assessment-btn {
    display: block;
    margin: 0 auto;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.assessment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.assessment-result {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.warning-result {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid #fca5a5;
}

.warning-result p {
    color: #7f1d1d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.positive-result {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #86efac;
}

.positive-result p {
    color: #166534;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design for Responsible Gambling Section */
@media (max-width: 768px) {
    .responsible-gambling-section {
        padding: 3rem 0;
    }

    .responsible-header {
        flex-direction: column;
        gap: 1rem;
    }

    .responsible-title h2 {
        font-size: 2rem;
    }

    .main-warning {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .responsible-grid {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .regulation-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .disclaimer-content {
        grid-template-columns: 1fr;
    }

    .regulation-logos {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .responsible-gambling-section {
        padding: 2rem 0;
    }

    .main-warning,
    .help-contacts,
    .regulation-info,
    .legal-disclaimer,
    .self-assessment {
        padding: 1.5rem;
    }

    .responsible-title h2 {
        font-size: 1.8rem;
    }

    .warning-content h3 {
        font-size: 1.3rem;
    }

    .help-contacts h3,
    .regulation-info h3,
    .disclaimer-header h3,
    .self-assessment h3 {
        font-size: 1.5rem;
    }

    .phone-number {
        font-size: 1.1rem;
    }

    .question-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .assessment-checkbox {
        align-self: flex-start;
    }
}

/* Print Styles */
@media print {
    .responsible-gambling-section {
        background: white;
        border-top: 2px solid #000;
    }

    .assessment-btn {
        display: none;
    }

    .contact-link {
        color: #000;
    }

    .main-warning,
    .legal-disclaimer {
        border: 2px solid #000;
        background: white;
    }
}

/* Accessibility */
.assessment-checkbox:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.contact-card:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.responsible-card:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Animation pour l'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.assessment-result {
    animation: fadeInUp 0.5s ease-out;
}

/* Hover effects pour les cartes */
.responsible-card:hover .card-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.contact-card:hover .phone-number {
    color: #991b1b;
    transition: color 0.3s ease;
}

.bonus-info {
  max-width: 420px;          /* Genişliği sınırla */
  padding: 8px 12px;
  background-color: #f9f9f9;
  border-radius: 6px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 6px;                 /* Aralarındaki boşluk */
}

.bonus-amount {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2a7ae2;            /* İstersen renk değiştir */
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.bonus-details {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.3;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
