:root {
    --primary-color: #1E3D59;
    --secondary-color: #FF6B6B;
    --accent-color: #4CAF50;
    --text-color: #333333;
    --light-gray: #F5F7FA;
    --dark-gray: #666666;
    --white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-gray);
}

/* Responsible Gambling Banner */
.responsible-gambling-banner {
    background: linear-gradient(to right, var(--primary-color), #2C5282);
    color: var(--white);
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.age-restriction-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.gambling-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
}

.gambling-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -1px;
    padding: 1rem 0;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 6rem 0;
    margin-top: 1px;
    text-align: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.8rem 2rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .navbar-brand {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        padding: 0.6rem 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    animation: fadeIn 1s ease-out forwards;
}

.hero-description {
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

/* Container width adjustment for better readability */
.container {
    max-width: 1200px;
    padding: 0 2rem;
}

/* Listing Section */
.listing-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.betting-site-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.betting-site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.offer-tag {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.site-logo {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
}

.site-logo img {
    max-height: 60px;
    object-fit: contain;
}

.site-rating {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    color: var(--dark-gray);
    font-weight: 500;
}

.welcome-bonus {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    border-radius: 10px;
}

.welcome-bonus h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.welcome-bonus p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.btn-obtain-bonus {
    display: block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff8585 100%);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-obtain-bonus:hover {
    background: linear-gradient(135deg, #ff8585 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Additional Responsive Styles */
@media (max-width: 991.98px) {
    .betting-site-card {
        padding: 1.5rem;
    }
    
    .offer-tag {
        font-size: 0.8rem;
        padding: 0.4rem 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .listing-section {
        padding: 2rem 0;
    }
    
    .site-logo img {
        max-height: 50px;
    }
    
    .welcome-bonus {
        padding: 0.8rem;
    }
    
    .welcome-bonus h3 {
        font-size: 1rem;
    }
    
    .welcome-bonus p {
        font-size: 0.9rem;
    }
    
    .btn-obtain-bonus {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

/* Information Sections */
.info-sections {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
}

.info-block {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.info-block:hover {
    transform: translateY(-2px);
}

.info-block h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.info-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.info-block p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.5;
}

.info-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.restriction-alert {
    background: rgba(231, 76, 60, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.restriction-alert i {
    color: #e74c3c;
    font-size: 1.5rem;
}

.restriction-alert p {
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
}

.responsible-gaming li::before {
    color: var(--primary-color);
}

.help-resources {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    text-align: center;
}

.help-resources p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.help-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: var(--secondary-color);
}

/* Responsive adjustments for info sections */
@media (max-width: 991.98px) {
    .info-block {
        padding: 2rem;
    }

    .info-block h2 {
        font-size: 1.6rem;
    }

    .info-block p {
        font-size: 1rem;
    }

    .info-list li {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .info-sections {
        padding: 2rem 0;
    }

    .info-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .info-block h2 {
        font-size: 1.4rem;
    }

    .restriction-alert {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .help-link {
        font-size: 1rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary-color);
    color: white;
    margin-top: 4rem;
}

/* Disclaimer Section */
.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
}

.age-warning {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background-color: rgba(231, 76, 60, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.age-warning i {
    color: #e74c3c;
    font-size: 1.5rem;
}

.age-warning span {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #e74c3c;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

/* Policy Links Section */
.footer-links {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-links .col-auto:not(:last-child) a::after {
    content: '|';
    position: absolute;
    right: -3px;
    color: rgba(255, 255, 255, 0.3);
}

/* Partner Logos Section */
.footer-partners {
    padding: 3rem 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-logo {
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.partner-logo img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

a.partner-logo:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

/* Copyright Section */
.footer-copyright {
    padding: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .partner-logos {
        gap: 1.5rem;
    }

    .partner-logo img {
        height: 35px;
    }
}

@media (max-width: 767.98px) {
    .footer-links .col-auto:not(:last-child) a::after {
        display: none;
    }

    .footer-links a {
        display: block;
        text-align: center;
        padding: 0.5rem;
    }

    .partner-logos {
        gap: 1rem;
    }

    .partner-logo img {
        height: 30px;
    }

    .footer-disclaimer p {
        font-size: 0.85rem;
    }

    .age-warning {
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }

    .age-warning span {
        font-size: 1rem;
    }
}

/* Policy Pages Common Styles */
.help-page, .regulation-page, .privacy-page, .terms-page, .cookies-page {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    min-height: calc(100vh - 300px);
}

.page-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Section Styles */
.help-section, .regulation-section, .privacy-section, .terms-section, .cookies-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.help-section h2, .regulation-section h2, .privacy-section h2, .terms-section h2, .cookies-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.help-section h3, .regulation-section h3, .privacy-section h3, .terms-section h3, .cookies-section h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 1.5rem 0 1rem;
}

.help-section p, .regulation-section p, .privacy-section p, .terms-section p, .cookies-section p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.help-section ul, .regulation-section ul, .privacy-section ul, .terms-section ul, .cookies-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.help-section ul li, .regulation-section ul li, .privacy-section ul li, .terms-section ul li, .cookies-section ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.5;
}

.help-section ul li::before, .regulation-section ul li::before, .privacy-section ul li::before, .terms-section ul li::before, .cookies-section ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Warning Signs Specific */
.warning-signs ul li::before {
    content: '\f071';
    color: #e74c3c;
}

/* Cookie Types Specific */
.cookie-types {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .page-title {
        font-size: 2rem;
    }

    .help-section, .regulation-section, .privacy-section, .terms-section, .cookies-section {
        padding: 1.5rem;
    }

    .help-section h2, .regulation-section h2, .privacy-section h2, .terms-section h2, .cookies-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .help-page, .regulation-page, .privacy-page, .terms-page, .cookies-page {
        padding: 2rem 0;
    }

    .page-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .help-section p, .regulation-section p, .privacy-section p, .terms-section p, .cookies-section p {
        font-size: 1rem;
    }

    .help-section ul li, .regulation-section ul li, .privacy-section ul li, .terms-section ul li, .cookies-section ul li {
        font-size: 0.95rem;
    }
} 