/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    position: absolute;
    right: 0;
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

.nav-menu {
    transition: all 0.3s ease;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffd700;
}



/* Regulation Section */
.regulation-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.5);
}

.regulation-card {
    background: rgba(21, 21, 34, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    margin-top: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.regulation-card h2 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 28px;
}

.regulation-card ul {
    list-style: none;
    padding-left: 0;
}

.regulation-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #B8B8C7;
}

.regulation-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00E0FF;
    font-size: 12px;
}

/* Opt-out page button styles */
.btn-cancel, .btn-keep {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
    min-width: 150px;
}

.btn-cancel {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.btn-cancel:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.btn-keep {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
}

.btn-keep:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}





/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: white;
    padding: 120px 0 0px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    padding-top: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.age-verification {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    border: 2px solid rgba(255,255,255,0.3);
}

/* Casino Ranking Section */
.casino-ranking {
    padding: 10px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #7B61FF, #00E0FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.casino-card {
    background: rgba(21, 21, 34, 0.8);
    border: 1px solid rgba(123, 97, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}


.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(123, 97, 255, 0.2);
    border-color: rgba(0, 224, 255, 0.5);
}

.ranking-number {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(135deg, #7B61FF, #00E0FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.casino-logo {
    width: 100px;
    height: 80px;
    background: linear-gradient(135deg, #7B61FF, #00E0FF);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.casino-logo-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.casino-logo-link:hover {
    transform: scale(1.05);
}

.casino-logo-link:hover .casino-logo {
    box-shadow: 0 10px 25px rgba(123, 97, 255, 0.4);
    background: linear-gradient(135deg, #8B5CF6, #00E0FF);
}

.casino-info {
    flex: 1;
}

.casino-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.casino-subtitle {
    color: #B8B8C7;
    margin-bottom: 15px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 224, 255, 0.2);
    color: #00E0FF;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin-bottom: 15px;
}

.offer-text {
    font-size: 16px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.pwr-score {
    margin-bottom: 15px;
}

.pwr-label {
    font-size: 12px;
    color: #B8B8C7;
    margin-bottom: 5px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7B61FF, #00E0FF);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.feature-tags {
    display: flex;
    gap: 8px;
}

.feature-tag {
    background: rgba(139, 92, 246, 0.2);
    color: #8B5CF6;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.casino-cta {
    background: linear-gradient(135deg, #00E0FF, #7B61FF);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    min-width: 200px;
}

.casino-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 224, 255, 0.4);
}

/* Regulation Section */
.regulation-section {
    padding: 80px 0;
    background: #030202;
}

.regulation-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.regulation-item {
    background: #13131D;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-left: 4px solid #3498db;
}

.regulation-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.regulation-item p {
    color: #cccccc;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #000000;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.faq-item {
    background: #13131D;
    border: 1px solid #404040;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item.active {
    border-color: #3498db;
    box-shadow: 0 5px 25px rgba(52,152,219,0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #404040;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: inherit;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    color: #3498db;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: white;
}

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

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

.answer-content {
    padding: 1.5rem;
    background: #2a2a2a;
}

.answer-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.answer-content h4:before {
    content: "📋";
    margin-right: 0.5rem;
}

.answer-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.answer-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #404040;
    color: #cccccc;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.answer-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.answer-content li:last-child {
    border-bottom: none;
}

.answer-content strong {
    color: #ffffff;
}

.answer-content p {
    background: #3a3a3a;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0 5px 5px 0;
    color: #cccccc;
}

/* FAQ Links */
.faq-links {
    text-align: center;
}

.faq-links h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-link {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0c0e11 0%, #16213D 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-disclaimer {
    margin-bottom: 2rem;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.9rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-grid a {
    display: block;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-grid a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.footer-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.age-logo {
    background: #ff6b6b;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-img {
    width: 100px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.logo-btn {
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.logo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.gov-logo {
    background: #28a745;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.ibja-logo {
    background: #17a2b8;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.ja-logo {
    background: #6c757d;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.6rem;
    text-align: center;
    padding: 0.5rem;
}

.moody-logo {
    background: #6c757d;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.6rem;
    text-align: center;
    padding: 0.5rem;
}

.gordon-logo {
    background: #6c757d;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.6rem;
    text-align: center;
    padding: 0.5rem;
}

.trustpilot-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.trustpilot-logo .stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.trustpilot-logo span {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.logo-item span {
    font-size: 0.8rem;
    opacity: 0.8;
    max-width: 120px;
    text-align: center;
}

.footer-legal {
    margin-bottom: 2rem;
}

.footer-legal p {
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.8;
    font-size: 0.85rem;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.legal-section a {
    color: yellow;
    text-decoration: none;
}

/* Mobile Styles (320px - 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
    }
    
    .nav-menu li {
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Casino Cards */
    .casino-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .ranking-number {
        font-size: 36px;
        min-width: auto;
    }
    
    .casino-logo {
        width: 80px;
        height: 60px;
        font-size: 20px;
        margin: 0 auto;
    }
    
    .casino-info {
        width: 100%;
    }
    
    .casino-title {
        font-size: 20px;
    }
    
    .offer-text {
        font-size: 14px;
    }
    
    .feature-tags {
        justify-content: center;
    }
    
    .feature-tag {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .casino-cta {
        margin-top: 15px;
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Regulation Section */
    .regulation-section {
        padding: 60px 0;
    }
    
    .regulation-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .regulation-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .regulation-item {
        padding: 1.5rem;
    }
    
    .regulation-item h3 {
        font-size: 1.1rem;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .faq-accordion {
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
        padding-right: 2rem;
    }
    
    .faq-icon {
        font-size: 1.2rem;
    }
    
    .answer-content {
        padding: 1.2rem;
    }
    
    .answer-content h4 {
        font-size: 1rem;
    }
    
    .answer-content li {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-disclaimer p {
        font-size: 0.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .footer-grid a {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
    
    .footer-logos {
        gap: 1rem;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .footer-legal p {
        font-size: 0.75rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Tablet Styles (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 20px;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Casino Cards */
    .casino-card {
        padding: 25px;
        gap: 25px;
    }
    
    .ranking-number {
        font-size: 42px;
        min-width: 70px;
    }
    
    .casino-logo {
        width: 90px;
        height: 70px;
        font-size: 22px;
    }
    
    .casino-title {
        font-size: 22px;
    }
    
    .feature-tag {
        font-size: 10px;
    }
    
    /* Regulation Section */
    .regulation-section h2 {
        font-size: 2.2rem;
    }
    
    .regulation-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    /* FAQ Section */
    .faq-section h2 {
        font-size: 2.2rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .logo-img {
        width: 55px;
        height: 55px;
    }
}

/* Small Desktop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .casino-card {
        padding: 28px;
        gap: 28px;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* Extra Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .casino-card:hover {
        transform: none;
    }
    
    .casino-cta:hover {
        transform: none;
    }
    
    .footer-grid a:hover {
        transform: none;
    }
    
    .faq-question:hover {
        background: #333333;
    }
    
    .faq-item.active .faq-question {
        background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .casino-card {
        border: 2px solid #ffffff;
    }
    
    .nav-menu a:hover {
        color: #ffff00;
    }
    
    .casino-cta {
        border: 2px solid #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bonus-card {
    animation: fadeInUp 0.6s ease-out;
}

.bonus-card:nth-child(2) {
    animation-delay: 0.2s;
}

.bonus-card:nth-child(3) {
    animation-delay: 0.4s;
}

.regulation-item {
    animation: fadeInUp 0.6s ease-out;
}

.regulation-item:nth-child(2) {
    animation-delay: 0.1s;
}

.regulation-item:nth-child(3) {
    animation-delay: 0.2s;
}

.regulation-item:nth-child(4) {
    animation-delay: 0.3s;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Legal Pages Styles */
.legal-content {
    padding: 120px 0 80px;
    background: #0a0a0a;
    min-height: 100vh;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: #cccccc;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.legal-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
}

.legal-subtitle a {
    color: #3498db;
    text-decoration: none;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    background: #11111B;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-bottom: 1.5rem;
}

.legal-section li {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

/* Special Grids for Legal Pages */
.values-grid, .purpose-grid, .rights-grid, .tips-grid, .warning-signs, .protection-measures, .tools-grid, .help-resources, .prohibited-uses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-item, .purpose-item, .right-item, .tip-item, .warning-item, .measure-item, .tool-item, .resource-item, .prohibited-item {
    background: #333333;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.value-item h3, .purpose-item h3, .right-item h3, .tip-item h3, .warning-item h3, .measure-item h3, .tool-item h3, .resource-item h3, .prohibited-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.value-item p, .purpose-item p, .right-item p, .tip-item p, .warning-item p, .measure-item p, .tool-item p, .resource-item p, .prohibited-item p {
    margin-bottom: 0;
    color: #cccccc;
}

.help-alert {
    background: #3a3a3a;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.help-alert p {
    margin: 0;
    color: #cccccc;
    font-weight: 600;
}

.contact-info {
    background: #333333;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form-container, .opt-out-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #404040;
    border-radius: 5px;
    font-size: 1rem;
    background: #333333;
    color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #cccccc;
    font-size: 0.875rem;
}

.checkbox-label, .radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.checkbox-label input,
.radio-label input {
    margin-right: 0.5rem;
}

.submit-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 2rem;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.success-message h3 {
    margin-bottom: 0.5rem;
    color: #155724;
}

.success-message p {
    margin-bottom: 0.5rem;
    color: #155724;
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    background: #020e1a;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    color: #a6b5be;
}

.contact-card p {
    margin-bottom: 0;
    color: #ffffff;
}

.contact-card a {
    color: #ffffff;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.hours-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.hours-item h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.social-icon {
    font-size: 1.2rem;
}

/* Opt-out Page Specific */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.info-card h3 {
    margin-bottom: 0.5rem;
    color: #28a745;
}

.contact-alternatives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-alt-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #17a2b8;
}

.contact-alt-item h3 {
    margin-bottom: 0.5rem;
    color: #17a2b8;
}

/* Bonus List Page Styles */
.bonus-list-content {
    padding: 120px 0 80px;
    background: #0a0a0a;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

.filter-section {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.filter-container h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
}

.filter-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #404040;
    border-radius: 5px;
    font-size: 1rem;
    background: #333333;
    color: #ffffff;
}

.filter-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    transform: translateY(-2px);
}

.bonus-list-section {
    margin-bottom: 3rem;
}

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

.bonus-item {
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #333333;
    border-bottom: 1px solid #404040;
}

.casino-logo h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.3rem;
}

.license {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bonus-badge {
    background: #3498db;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bonus-badge.popular {
    background: #ff6b6b;
}

.bonus-badge.new {
    background: #28a745;
}

.bonus-badge.special {
    background: #ffc107;
    color: #212529;
}

.bonus-content {
    padding: 1.5rem;
    background: #2a2a2a;
}

.bonus-content h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.bonus-details {
    margin-bottom: 1rem;
}

.bonus-details p {
    margin-bottom: 0.25rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.bonus-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #e3f2fd;
    color: #3498db;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bonus-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bonus-cta:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    transform: scale(1.02);
}

.info-section {
    margin-bottom: 3rem;
}

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

.info-section .info-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.info-section .info-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.info-section .info-card ol,
.info-section .info-card ul {
    margin-bottom: 0;
}

.info-section .info-card li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

/* Responsive for Legal Pages */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid,
    .hours-grid,
    .info-cards,
    .contact-alternatives,
    .bonus-list-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .legal-content,
    .bonus-list-content {
        padding: 100px 0 60px;
    }
    
    .legal-header h1,
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Form improvements for mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Contact cards mobile */
    .contact-card {
        padding: 1.2rem;
    }
    
    .contact-card h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
    }
}
