/* General Styles */
:root {
    --primary-color: #2C3E50;
    --secondary-color: #E74C3C;
    --accent-color: #F1C40F;
    --text-color: #2C3E50;
    --light-bg: #F8F9FA;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

/* Topbar */
.topbar {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    background-color: #1a252f;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 1rem 0;
}

.navbar-brand img {
    filter: brightness(1.1);
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495E 100%);
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
} 

/* Casino Listings Section */
.listings-section {
    background-color: var(--light-bg);
}

.casino-offer {
    transition: transform 0.2s;
}

.casino-offer:hover {
    transform: translateY(-2px);
}

.casino-logo {
    max-height: 60px;
    object-fit: contain;
}

.verified-badge {
    color: #27ae60;
    font-weight: 500;
}

.rating {
    color: var(--primary-color);
}

.rating .h4 {
    color: var(--secondary-color);
}

.disclaimer-text {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Responsive Adjustments for Casino Listings */
@media (max-width: 768px) {
    .casino-offer .row > div {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .casino-offer .row > div:last-child {
        margin-bottom: 0;
    }
    
    .casino-logo {
        max-height: 50px;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 200px;
    }
} 

/* Text Sections */
.text-sections {
    background-color: var(--light-bg);
}

.section-title {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.content-card {
    line-height: 1.7;
}

.features-list,
.responsible-gaming-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.features-list li,
.responsible-gaming-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
}

.features-list li::before {
    content: '✓';
    color: #27ae60;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.responsible-gaming-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.help-resources {
    background-color: rgba(44, 62, 80, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.disclaimer-content strong {
    color: var(--primary-color);
}

/* Responsive Adjustments for Text Sections */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .content-card {
        padding: 1.5rem !important;
    }
    
    .features-list li,
    .responsible-gaming-list li {
        margin-bottom: 1rem;
    }
} 

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: white;
}

.footer-top {
    background-color: #1a252f;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-top img {
    transition: opacity 0.3s;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-top img:hover {
    opacity: 1;
}

.footer-disclaimer {
    background-color: #1a252f;
    font-size: 0.95rem;
}

.footer-links {
    background-color: rgba(255,255,255,0.05);
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    font-size: 0.85rem;
}

/* Responsive Footer Adjustments */
@media (max-width: 768px) {
    .footer-link {
        padding: 0.5rem;
        display: block;
        text-align: center;
    }
    
    .footer-top .col-auto {
        padding: 0.5rem;
    }
} 

/* Policy Pages Styles */
.policy-section {
    background-color: var(--light-bg);
    min-height: calc(100vh - 300px);
}

.policy-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
}

.policy-content h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-content ul {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
}

.policy-content .alert {
    border-left: 4px solid #ffc107;
}

.tip-card {
    height: 100%;
    border: 1px solid rgba(0,0,0,0.1);
}

.help-resources {
    border-left: 4px solid var(--secondary-color);
}

.cookie-notice {
    border-left: 4px solid var(--primary-color);
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
    .policy-content h2 {
        font-size: 1.4rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
    
    .tip-card {
        margin-bottom: 1rem;
    }
} 