/* Global Styles */
:root {
    --primary-color: #f97316;
    --secondary-color: #ea580c;
    --text-color: #1f2937;
    --light-bg: #fff7ed;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Disclaimer Bar */
.disclaimer-bar {
    background-color: #fef3c7;
    padding: 8px 0;
    font-size: 0.9rem;
}

.disclaimer-bar a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.disclaimer-bar a:hover {
    text-decoration: underline;
}

/* Navbar Styles */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: var(--white);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Listing Section */
.listing-section {
    background-color: var(--light-bg);
}

.listing-item {
    transition: transform 0.3s ease;
}

.listing-item:hover {
    transform: translateY(-5px);
}

.bonus-title {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.bonus-desc {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.rating .stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rating .votes {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.disclaimer-row {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.disclaimer-row p {
    margin-bottom: 0;
}

/* Responsive adjustments for listing */
@media (max-width: 768px) {
    .listing-item .row {
        text-align: center;
    }
    
    .listing-item .col-md-3,
    .listing-item .col-md-4,
    .listing-item .col-md-2 {
        margin-bottom: 1rem;
    }

    .bonus-amount {
        font-size: 1.5rem;
    }

    .btn-primary {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Text Sections */
.text-sections {
    background-color: var(--white);
}

.text-section {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.content-box {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.content-box ul {
    list-style-type: none;
    padding-left: 0;
}

.content-box ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-box ul li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.alert-text {
    background-color: #fff3e0;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    border-left: 4px solid var(--primary-color);
}

.alert-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.alert-text a:hover {
    text-decoration: underline;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.info-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.regulation-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.point h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.bonus-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.bonus-type {
    background-color: #fff7ed;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.bonus-type h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.note {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* Responsive adjustments for text sections */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }

    .content-box {
        padding: 1.5rem;
    }

    .info-grid,
    .regulation-points,
    .bonus-types {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #1f2937;
    color: #fff;
    margin-top: 3rem;
}

.footer-disclaimer {
    background-color: var(--primary-color);
    padding: 1rem 0;
}

.disclaimer-text {
    color: #fff;
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
}

.certifications {
    background-color: #1f2937;
    padding: 2rem 0;
}

.certification-item {
    text-align: center;
    padding: 0.5rem;
}

.certification-item img {
    max-height: 50px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.certification-item img:hover {
    opacity: 1;
}

.footer-links {
    background-color: #111827;
    padding: 2rem 0;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.copyright {
    background-color: #111827;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: #9ca3af;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .certification-item {
        margin-bottom: 1rem;
    }

    .certification-item img {
        max-height: 40px;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .copyright p {
        font-size: 0.85rem;
    }
} 