/* UK Casino Scout - Clean & Responsible Design */
/* Color Palette: Light Blue (#4A90E2) / Safety Orange (#F5A623) */
/* Typography: Open Sans / Source Sans Pro */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f0f4f8;
}

/* Header Styles */
.header {
    background-color: white;
    color: #4A90E2;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #4A90E2;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    color: #4A90E2;
    font-weight: 700;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
}

.nav a:hover {
    color: #F5A623;
    border-bottom-color: #F5A623;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4A90E2 0%, #357abd 100%);
    color: white;
    padding: 4.5rem 2rem;
    text-align: center;
}

.hero-content h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2.6rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-button {
    background-color: #F5A623;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    font-family: 'Source Sans Pro', sans-serif;
}

.cta-button:hover {
    background-color: #e69a1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 2rem;
    background-color: white;
}

.comparison-section h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #4A90E2;
    font-weight: 700;
}

.casino-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.casino-card {
    background: white;
    border: 2px solid #e8f0f8;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.08);
    max-width: 780px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(10px);
    animation: scoutFadeIn 0.5s ease-out forwards;
}

.casino-card:nth-child(2) { animation-delay: 0.07s; }
.casino-card:nth-child(3) { animation-delay: 0.14s; }
.casino-card:nth-child(4) { animation-delay: 0.21s; }
.casino-card:nth-child(5) { animation-delay: 0.28s; }

@keyframes scoutFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.15);
    border-color: #F5A623;
}
.casino-logo {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f8 100%);
    padding: 2rem;
    border-bottom: 2px solid #e8f0f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo img {
    max-width: 100%;
    max-height: 70px;
    height: auto;
    width: auto;
    display: block;
}

.logo-placeholder {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.4rem;
    color: #4A90E2;
    font-weight: 700;
}

.casino-info {
    padding: 1.5rem;
}

.verified-badge {
    display: inline-block;
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    border: 1px solid #4caf50;
}

.casino-info h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #4A90E2;
    font-weight: 700;
}

.offer {
    background-color: #f0f4f8;
    padding: 1rem;
    border-left: 4px solid #F5A623;
    margin-bottom: 1rem;
    border-radius: 6px;
}

.offer strong {
    color: #4A90E2;
}

.details {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.play-button {
    display: block;
    background-color: #4A90E2;
    color: white;
    text-align: center;
    padding: 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
    font-family: 'Source Sans Pro', sans-serif;
}

.play-button:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.disclaimer {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
}

/* Trust Section */
.trust-section {
    padding: 4rem 2rem;
    background-color: #f0f4f8;
}

.trust-section h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #4A90E2;
    font-weight: 700;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.08);
    border-top: 4px solid #F5A623;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item h3 {
    color: #4A90E2;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsible Gambling Notice */
.responsible-notice {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #4A90E2 0%, #357abd 100%);
    color: white;
    text-align: center;
}

.responsible-notice h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.responsible-notice p {
    font-size: 1rem;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.responsible-notice a {
    color: #F5A623;
    text-decoration: none;
    font-weight: bold;
}

.responsible-notice a:hover {
    text-decoration: underline;
}

/* Footer Styles */
.footer {
    background-color: #f0f4f8;
    color: #333;
    padding: 3rem 2rem 1rem;
    border-top: 3px solid #4A90E2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4A90E2;
    font-weight: 700;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: #666;
}

.trust-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-logos a {
    display: inline-block;
    width: 60px;
    height: 40px;
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.trust-logos a:hover {
    background-color: rgba(245, 166, 35, 0.2);
    border-color: #F5A623;
}

.trust-logos img {
    max-width: 100%;
    max-height: 100%;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-links a:hover {
    color: #F5A623;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(74, 144, 226, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

/* Static Page Styles */
.static-page {
    padding: 3rem 2rem;
    background-color: white;
}

.static-page h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2.2rem;
    color: #4A90E2;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.page-content h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.5rem;
    color: #4A90E2;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #F5A623;
    padding-bottom: 0.5rem;
    font-weight: 700;
}

.page-content p {
    margin-bottom: 1rem;
    color: #555;
}

.page-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.page-content a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
}

.page-content a:hover {
    color: #F5A623;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .casino-grid {
        grid-template-columns: 1fr;
    }

    .trust-content {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}
