/* ==========================================
   Play Compass - Casino Comparison Site
   Clean, Professional Design
   ========================================== */

/* CSS Variables */
:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #10b981;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navigation */
.site-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-image {
    height: 60px; /* Adjust to fit your header */
    width: auto;
    display: block;
}

/* Hover effect (optional) */
.logo-image:hover {
    opacity: 0.85;
    transition: opacity 0.2s;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
   background: linear-gradient(135deg, #2c3e7d 0%, #1a2556 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.casino-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Casino Card */
.casino-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    border: 2px solid #e0e7ff;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 1.5rem;
    align-items: center;
}

.casino-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.casino-rank {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.casino-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0;
}

.casino-logo .logo-placeholder {
    padding: 1.5rem;
    border-radius: 8px;
    background: white; /* Add white background for logo */
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo .logo-placeholder img {
    width: 100%;
    height: auto;
    max-width: 150px;
    object-fit: contain;
}

.casino-rating {
    text-align: left;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
}

/* Middle section - bonus and features */
.casino-middle {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

/* Bonus Section */
.casino-bonus {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    text-align: left;
    border: 1px solid #c7d2fe;
}

.bonus-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.bonus-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0.25rem 0;
}

.bonus-terms {
    font-size: 0.7rem;
    color: var(--text-light);
}

/* Features List */
.casino-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.casino-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    border-bottom: none;
}

.casino-features li:last-child {
    border-bottom: none;
}

.casino-features .icon {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

/* Buttons */
.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 180px;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.875rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Casino Footer */
.casino-footer {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
}

.casino-footer small {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* Payment Methods (optional - for future use) */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.payment-badge {
    background: var(--bg-light);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
}

/* Info Section */
.info-section {
    background: var(--bg-white);
    padding: 4rem 0;
}

.info-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #e0e7ff;
    background: var(--bg-light);
    transform: translateY(-4px);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.uk-badge {
    background: linear-gradient(135deg, #012169 0%, #C8102E 50%, #012169 100%);
    color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: #cbd5e1;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.disclaimer-text {
    color: #94a3b8;
    font-size: 0.8125rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Stack casino cards vertically on mobile */
    .casino-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .casino-rank {
        top: 0.75rem;
        left: 0.75rem;
    }
    
    .casino-header {
        padding-top: 2rem;
    }
    
    .casino-features {
        grid-template-columns: 1fr;
    }
    
    .casino-actions {
        min-width: auto;
    }
    
    .casino-footer {
        margin-top: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.25rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .comparison-section {
        padding: 2rem 0;
    }
}

/* Policy Pages Styles */
.policy-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 2rem;
}

.policy-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.policy-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.policy-content h2:first-of-type {
    border-top: none;
    margin-top: 1rem;
}

.policy-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content ul {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.2s;
}

.policy-content a:hover {
    color: var(--primary-hover);
}

.policy-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.back-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.2s;
}

.back-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Alert Box */
.alert-box {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.alert-box h2 {
    color: #991b1b;
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    padding: 0;
    border: none;
}

.alert-box p {
    color: #7f1d1d;
    margin: 0;
}

/* Help Section */
.help-section {
    margin: 2rem 0;
    display: grid;
    gap: 1.5rem;
}

.help-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.help-card h3 {
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.help-card p {
    margin-bottom: 0.5rem;
}

.help-link {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.2s;
}

.help-link:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
    .policy-content {
        padding: 1.5rem;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
}

/* ====================
   REVIEW PAGES STYLES 
   ==================== */

/* Review Pages */
.review-hero {
    background: linear-gradient(135deg, #2c3e7d 0%, #1a2556 100%);
    padding: 3rem 0;
    color: white;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.casino-branding {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the bordered logo */
}

.casino-logo-large {
    padding: 1rem;
    border-radius: 12px;
    background: transparent; /* No background */
    border: 2px solid rgba(255, 255, 255, 0.3); /* Thin white highlighted border */
    text-align: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}
.casino-logo-large:hover {
    border-color: rgba(255, 255, 255, 0.6); /* Brighter white on hover */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); /* Subtle white glow */
    transform: translateY(-2px);
}

.casino-logo-large img {
    width: 100%;
    height: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.rating-badge {
    text-align: center;
}

.stars-large {
    color: #fbbf24;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.rating-score {
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.9;
}

.review-cta {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    min-width: 350px;
}

.bonus-highlight {
    margin-bottom: 1.5rem;
}
.bonus-highlight a {
    text-decoration: none;
    color: inherit; /* Use the existing text color */
    display: block; /* Make entire area clickable */
}

.bonus-highlight a:hover .bonus-text {
    color: var(--primary-color); /* Change color on hover */
    text-decoration: underline; /* Show it's clickable */
}
.bonus-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.bonus-code {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 600;
}

.btn-large {
    font-size: 1.125rem;
    padding: 1rem 2rem;
    width: 100%;
    margin-bottom: 0.75rem;
}

.disclaimer-small {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
    padding: 20px 0 0 0;
}

/* Review Content */
.review-content {
    padding: 4rem 0;
    background: var(--bg-white);
}

.review-main {
    max-width: 900px;
    margin: 0 auto;
}

.review-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.review-section:last-child {
    border-bottom: none;
}

.review-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.review-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.review-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.review-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-section ul {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.review-section li {
    margin-bottom: 0.5rem;
}

.review-note {
    background: var(--bg-light);
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
    margin-top: 1rem;
}

/* Pros & Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.pros-box,
.cons-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.pros-box h3 {
    color: var(--accent-color);
    margin-top: 0;
}

.cons-box h3 {
    color: #ef4444;
    margin-top: 0;
}

.pros-box ul,
.cons-box ul {
    list-style: none;
    padding-left: 0;
}

.pros-box li::before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

.cons-box li::before {
    content: "✗ ";
    color: #ef4444;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Verdict */
.verdict-section {
    background: linear-gradient(135deg, #f0f4ff, #e0e7ff);
    padding: 2rem;
    border-radius: 12px;
    border: none;
}

.verdict-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.verdict-cta .btn-primary,
.verdict-cta .btn-secondary {
    flex: 1;
    padding: 1rem 2rem;
}

/* Responsive Review Pages */
@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
    }
    
    .review-cta {
        min-width: auto;
        width: 100%;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .verdict-cta {
        flex-direction: column;
    }
}