/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification Popup */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.age-popup-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.age-popup-icon {
    font-size: 48px;
    color: #007BFF;
    margin-bottom: 20px;
}

.age-popup h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a202c;
}

.age-popup p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.age-popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.age-disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.cookie-text p {
    font-size: 14px;
    color: #cbd5e0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-link {
    color: #007BFF;
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #007BFF;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
}

.btn-outline {
    background: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
}

.btn-outline:hover {
    background: #007BFF;
    color: white;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #007BFF;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #FFD700;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Showcase Section */
.showcase {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a202c;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.casino-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.casino-card.featured {
    border-color: #007BFF;
    transform: scale(1.02);
}

.casino-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #FF6B35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.casino-logo {
    text-align: center;
    margin-bottom: 20px;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.casino-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #262626;
}

.casino-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    color: #1a202c;
}

.casino-rating {
    text-align: center;
    margin-bottom: 20px;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 5px;
}

.rating-text {
    font-size: 14px;
    color: #666;
}

.casino-bonus {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 8px;
    color: white;
}

.bonus-amount {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.bonus-text {
    font-size: 14px;
    opacity: 0.9;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    justify-content: center;
}

.feature {
    background: #e2e8f0;
    color: #4a5568;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.casino-actions {
    display: flex;
    gap: 10px;
}

.casino-actions .btn {
    flex: 1;
    padding: 12px;
    font-size: 14px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    color: #007BFF;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #007BFF;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007BFF;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2d3748;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #007BFF;
}

.responsible-gambling {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gambling-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #007BFF;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(51, 68, 157, 0.1);
}

.gambling-link:hover {
    background: rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
    text-decoration: none;
}

.gambling-logo {
    height: 74px;
    width: 74px;
    object-fit: contain;
    flex-shrink: 0;
}

.gambling-link span {
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    color: #cbd5e0;
    font-size: 14px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #f8fafc;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 20px;
}

.reviewer-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a202c;
}

.reviewer-location {
    font-size: 14px;
    color: #666;
}

.review-rating {
    text-align: right;
}

.review-rating .stars {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 5px;
}

.rating-score {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
}

.review-content h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
}

.review-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.tag.positive {
    background: #d4edda;
    color: #155724;
}

.tag.neutral {
    background: #fff3cd;
    color: #856404;
}

.tag.negative {
    background: #f8d7da;
    color: #721c24;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.review-date {
    font-size: 14px;
    color: #666;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #28a745;
}

/* Review Summary */
.review-summary {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.review-summary h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a202c;
}

.summary-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.summary-stat {
    text-align: center;
}

.summary-stat .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #007BFF;
    margin-bottom: 5px;
}

.summary-stat .stat-label {
    font-size: 14px;
    color: #666;
}

/* Add Review Form */
.add-review {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.add-review h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a202c;
}

.add-review p {
    color: #666;
    margin-bottom: 30px;
}

.review-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1a202c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007BFF;
}

.rating-input {
    display: flex;
    gap: 5px;
    flex-direction: row-reverse;
    justify-content: start;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    font-size: 24px;
    color: #e2e8f0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-input input[type="radio"]:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .brand-text {
        font-size: 20px;
    }
    
    .gambling-logo {
        height: 40px;
        width: 40px;
    }
    
    .gambling-link {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-actions {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .age-popup-buttons {
        flex-direction: column;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .review-rating {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .brand-text {
        font-size: 18px;
    }
    
    .nav-brand {
        gap: 8px;
    }
    
    .gambling-logo {
        height: 25px;
        width: 25px;
    }
    
    .gambling-link {
        padding: 5px 8px;
        font-size: 12px;
        gap: 8px;
    }
    
    .showcase,
    .features {
        padding: 60px 0;
    }
    
    .casino-card {
        padding: 20px;
    }
    
    .age-popup-content {
        padding: 30px 20px;
    }
}

/* Legal Content Styles */
.legal-content {
    padding: 80px 0;
    background: #f8fafc;
}

.legal-document {
    background: white;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    background: #e2e8f0;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.last-updated p {
    margin: 0;
    color: #4a5568;
    font-size: 14px;
}

.legal-document h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #1a202c;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.legal-document h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: #2d3748;
}

.legal-document p {
    color: #4a5568;
    line-height: 1.7;
}

.legal-document ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-document li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 10px;
}

.legal-document a {
    color: #007BFF;
    text-decoration: none;
}

.legal-document a:hover {
    text-decoration: underline;
}

.contact-info {
    background: #f7fafc;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #007BFF;
}

.contact-info p {
    margin: 8px 0;
    color: #2d3748;
}

/* GDPR Specific Styles */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.right-card {
    background: #f7fafc;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.right-card:hover {
    transform: translateY(-5px);
    border-color: #007BFF;
}

.right-icon {
    font-size: 48px;
    color: #007BFF;
    margin-bottom: 15px;
}

.right-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
}

.right-card p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.request-process {
    background: #e6f3ff;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.request-process h3 {
    color: #1a202c;
    margin-bottom: 15px;
}

.request-process ol {
    margin: 0;
    padding-left: 25px;
}

.request-process li {
    margin-bottom: 10px;
    color: #2d3748;
}

.basis-table {
    margin: 25px 0;
}

.basis-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    align-items: start;
}

.basis-row:last-child {
    border-bottom: none;
}

.basis-type {
    font-weight: 600;
    color: #1a202c;
    background: #f7fafc;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
}

.basis-description {
    color: #4a5568;
    line-height: 1.6;
}

/* Legal Notice Specific Styles */
.company-info {
    background: #f7fafc;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #007BFF;
}

.company-info p {
    margin: 8px 0;
    color: #2d3748;
}

.regulatory-bodies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.regulatory-body {
    background: #f7fafc;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.regulatory-body h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a202c;
}

.regulatory-body p {
    color: #4a5568;
    margin: 8px 0;
    font-size: 14px;
}

/* Responsive Legal Content */
@media (max-width: 768px) {
    .legal-document {
        padding: 30px 20px;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .basis-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .regulatory-bodies {
        grid-template-columns: 1fr;
    }
}
