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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.age-restriction-banner {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-bottom: 2px solid #fb7185;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.banner-logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fb7185;
    letter-spacing: 0.5px;
}

.age-restriction-banner p {
    margin: 0;
}

.age-restriction-banner strong {
    color: #fb7185;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: linear-gradient(135deg, #be123c 0%, #dc2626 100%);
    color: white;
    text-align: center;
    padding: 40px 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 400;
}

.casino-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.casino-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.casino-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.casino-card:first-child {
    background: linear-gradient(135deg, #ffe4e6 0%, #fecdd3 100%);
    border: 3px solid #fb7185;
    box-shadow: 0 4px 16px rgba(251, 113, 133, 0.3);
}

.casino-card:first-child:hover {
    box-shadow: 0 6px 20px rgba(251, 113, 133, 0.4);
}

.rank-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    background: #be123c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    z-index: 10;
}

.casino-card:first-child .rank-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fb7185 0%, #f43f5e 100%);
    color: white;
    font-size: 1.3rem;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(251, 113, 133, 0.5);
}

.casino-content {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
    background: #fafafa;
}

.casino-card:first-child .casino-content {
    background: linear-gradient(135deg, #fff5f7 0%, #fffafc 100%);
}

.casino-logo {
    min-width: 120px;
    width: 120px;
    height: 100px;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-placeholder {
    font-weight: bold;
    font-size: 1.1rem;
    color: #be123c;
    text-align: center;
    padding: 10px;
}

.casino-details {
    flex: 1;
}

.casino-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
}

.checkmark {
    color: #fb7185;
    flex-shrink: 0;
}

.casino-action {
    display: flex;
    align-items: center;
}

.visit-btn {
    background: linear-gradient(135deg, #be123c 0%, #dc2626 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 6px rgba(190, 18, 60, 0.3);
}

.visit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(190, 18, 60, 0.4);
}

.arrow-icon {
    width: 16px;
    height: 16px;
}

.terms-section {
    background: white;
    padding: 0;
}

.terms-header {
    background: #f9f9f9;
    padding: 12px 20px;
    font-weight: 600;
    color: #2c2c2c;
    border-top: 1px solid #e5e5e5;
    font-size: 0.9rem;
}

.terms-content {
    padding: 15px 20px;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
}

.terms-content p {
    margin: 0;
}

.faq-section {
    margin-top: 40px;
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-title {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    text-align: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 12px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #be123c;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #fb7185;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 0 12px 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer {
    margin-top: 40px;
    padding: 40px 20px;
    text-align: center;
    background: #1a1a1a;
    color: #d1d5db;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #fb7185;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

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

.footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 20px;
    color: #9ca3af;
}

.footer-disclaimer p {
    margin-bottom: 10px;
}

.footer-disclaimer a {
    color: #fb7185;
}

.footer-disclaimer a:hover {
    color: #fca5a5;
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-badge {
    height: 50px;
    width: auto;
    transition: transform 0.2s;
}

.footer-badge:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 0.9rem;
}

.cookie-btn-accept {
    background: #fb7185;
    color: white;
}

.cookie-btn-accept:hover {
    background: #be123c;
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: #555;
    color: white;
}

.cookie-btn-reject:hover {
    background: #333;
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-verification-modal {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #fb7185;
}

.age-modal-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.age-icon {
    background: linear-gradient(135deg, #fb7185 0%, #f43f5e 100%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(251, 113, 133, 0.4);
}

.age-welcome,
.age-warning,
.age-terms {
    color: #d1d5db;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.6;
}

.age-warning {
    color: #fbbf24;
    font-weight: 600;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.age-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.age-btn-accept {
    background: linear-gradient(135deg, #fb7185 0%, #f43f5e 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(251, 113, 133, 0.3);
}

.age-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(251, 113, 133, 0.4);
}

.age-btn-reject {
    background: #374151;
    color: #9ca3af;
    border: 2px solid #4b5563;
}

.age-btn-reject:hover {
    background: #4b5563;
    color: white;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .casino-content {
        flex-direction: column;
        text-align: center;
    }

    .casino-logo {
        width: 100%;
        max-width: 200px;
    }

    .casino-action {
        width: 100%;
        justify-content: center;
    }

    .visit-btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .footer-badges {
        flex-wrap: wrap;
    }

    .age-verification-modal {
        padding: 30px 20px;
    }

    .age-modal-title {
        font-size: 1.5rem;
    }
}
