/* UK Casino Index - Modern & Sleek Design */
/* Color Palette: Charcoal (#222222) / Neon Green (#00FF7F) */
/* Typography: Montserrat / Roboto */

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

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

/* Header Styles */
.header {
    background-color: #222222;
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 255, 127, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #00FF7F;
    font-weight: 700;
}

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

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00FF7F;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #222222 0%, #333333 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 127, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ddd;
}

.cta-button {
    background: linear-gradient(135deg, #00FF7F 0%, #00cc66 100%);
    color: #222222;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 255, 127, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.5);
}

/* 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: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #222222;
    font-weight: 700;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.filter-tags .tag {
    border-radius: 999px;
    border: 1px solid #00FF7F;
    padding: 0.35rem 0.9rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #ffffff;
    color: #222222;
}

.filter-tags .tag.is-active {
    background: #00FF7F;
    color: #111111;
}

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

.casino-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    opacity: 0;
    transform: translateY(16px);
    animation: indexCardIn 0.45s ease-out forwards;
}

.casino-card:nth-child(2) { animation-delay: 0.05s; }
.casino-card:nth-child(3) { animation-delay: 0.10s; }
.casino-card:nth-child(4) { animation-delay: 0.15s; }
.casino-card:nth-child(5) { animation-delay: 0.20s; }

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

.casino-logo {
    background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
    padding: 2rem;
    border-bottom: 2px solid #e0e0e0;
    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: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #222222;
    font-weight: 700;
}

.casino-info {
    padding: 1.5rem;
}

.verified-badge {
    display: inline-block;
    background-color: #f0fff4;
    color: #00cc66;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    border: 1px solid #00FF7F;
}

.casino-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #222222;
    font-weight: 700;
}

.offer {
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
    padding: 1rem;
    border-left: 4px solid #00FF7F;
    margin-bottom: 1rem;
    border-radius: 6px;
}

.offer strong {
    color: #222222;
}

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

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

.play-button {
    display: block;
    background: linear-gradient(135deg, #00FF7F 0%, #00cc66 100%);
    color: #222222;
    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: 'Montserrat', sans-serif;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 255, 127, 0.3);
}

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

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

.trust-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #222222;
    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: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #00FF7F;
    transition: transform 0.3s ease;
}

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

.trust-item h3 {
    color: #222222;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: 'Montserrat', 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, #222222 0%, #333333 100%);
    color: white;
    text-align: center;
}

.responsible-notice h2 {
    font-family: 'Montserrat', 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: #00FF7F;
    text-decoration: none;
    font-weight: bold;
}

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

/* Footer Styles */
.footer {
    background-color: #222222;
    color: white;
    padding: 3rem 2rem 1rem;
}

.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: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #00FF7F;
    font-weight: 700;
}

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

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

.trust-logos a {
    display: inline-block;
    width: 60px;
    height: 40px;
    background-color: rgba(0, 255, 127, 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(0, 255, 127, 0.3);
}

.trust-logos a:hover {
    background-color: rgba(0, 255, 127, 0.2);
    border-color: #00FF7F;
}

.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: #00FF7F;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 127, 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: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: #222222;
    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: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #222222;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #00FF7F;
    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: #00FF7F;
    text-decoration: none;
    font-weight: 500;
}

.page-content a:hover {
    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: 2rem;
    }

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

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

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