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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Hexagon Pattern Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, #000000 12%, transparent 12.5%, transparent 87%, #000000 87.5%, #000000),
        linear-gradient(150deg, #000000 12%, transparent 12.5%, transparent 87%, #000000 87.5%, #000000),
        linear-gradient(30deg, #000000 12%, transparent 12.5%, transparent 87%, #000000 87.5%, #000000),
        linear-gradient(150deg, #000000 12%, transparent 12.5%, transparent 87%, #000000 87.5%, #000000),
        linear-gradient(60deg, #000000 25%, transparent 25.5%, transparent 75%, #000000 75%, #000000),
        linear-gradient(60deg, #000000 25%, transparent 25.5%, transparent 75%, #000000 75%, #000000);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    opacity: 0.03;
    z-index: -1;
}

/* Glow Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(123, 97, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(16, 185, 118, 0.1) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

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

/* Header */
header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(123, 97, 255, 0.2);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    height: 85px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.header-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 20px rgba(123, 97, 255, 0.5));
}

/* Hide original logo text */
.logo {
    display: none;
}

/* Hide navigation and mobile menu */
nav, .mobile-menu-toggle, .cta-button {
    display: none;
}

/* Back Button */
.back-button {
    position: fixed;
    top: 100px;
    left: 20px;
    background: linear-gradient(135deg, #A855F7, #10B976);
    color: white;
    border: none;
    border-radius: 50%;
    width: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(123, 97, 255, 0.3);
}

.back-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(123, 97, 255, 0.5);
    background: linear-gradient(135deg, #8B5CF6, #10B976);
}

.back-button::before {
    content: '←Back';
    font-size: 24px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 50px);
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF, #A855F7, #10B976);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    color: #B8B8C7;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Animated Background */
.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 118, 0.4), rgba(123, 97, 255, 0.4));
    box-shadow: 0 0 10px rgba(16, 185, 118, 0.3), 0 0 20px rgba(123, 97, 255, 0.2);
    animation: sparkle 2s ease-in-out infinite;
    opacity: 0;
    clip-path: none;
}

.circle:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circle:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.circle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 70%;
    animation-delay: 2s;
}

.circle:nth-child(4) {
    width: 50px;
    height: 50px;
    top: 80%;
    left: 50%;
    animation-delay: 3s;
}

.circle:nth-child(5) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 80%;
    animation-delay: 4s;
}

.circle:nth-child(6) {
    width: 45px;
    height: 45px;
    top: 50%;
    left: 5%;
    animation-delay: 5s;
}

.circle:nth-child(7) {
    width: 55px;
    height: 55px;
    top: 70%;
    left: 90%;
    animation-delay: 6s;
}

.circle:nth-child(8) {
    width: 65px;
    height: 65px;
    top: 40%;
    left: 40%;
    animation-delay: 7s;
}

.circle:nth-child(9) {
    width: 35px;
    height: 35px;
    top: 90%;
    left: 25%;
    animation-delay: 8s;
}

.circle:nth-child(10) {
    width: 75px;
    height: 75px;
    top: 5%;
    left: 60%;
    animation-delay: 9s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

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

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

.casino-card {
    background: rgb(0, 0, 0);
    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;
}


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

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

.casino-logo {
    width: 100px;
    height: 80px;
    background: #000000;
    border: 2px solid #10B976;
    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, #8a5cf66b, #10b9757c);
}

.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(16, 185, 118, 0.2);
    color: #10B976;
    padding: 5px 12px;
    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, #A855F7, #10B976);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    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, #10B976, #A855F7);
    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;
    transform: skew(-15deg);
}

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

.casino-cta span {
    display: inline-block;
    transform: skew(15deg);
}

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

.regulation-card {
    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: #10B976;
    font-size: 12px;
}

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

.faq-item {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(123, 97, 255, 0.3);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(16, 185, 118, 0.5);
}

.faq-question {
    background-color: #000000;
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #FFFFFF;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(168, 85, 247, 0.05);
}

.faq-toggle {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #B8B8C7;
    background: rgba(16, 185, 118, 0.02);
    border-radius: 0 0 15px 15px;
}

.faq-item.active .faq-answer {
    padding: 15px 30px 25px;
    max-height: 500px;
    background: rgba(16, 185, 118, 0.05);
    border-radius: 0 0 15px 15px;
}

/* Responsible Gaming Section */
.responsible-gaming {
    padding: 60px 0;
    background: rgba(10, 10, 10, 0.5);
    text-align: center;
}

.responsible-gaming h2 {
    margin-bottom: 20px;
    color: #FFFFFF;
}

.responsible-gaming p {
    color: #B8B8C7;
    max-width: 600px;
    margin: 0 auto 20px;
}

.age-restriction {
    background: linear-gradient(135deg, #A855F7, #10B976);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    display: inline-block;
    font-weight: bold;
    margin-top: 20px;
}

.legal-disclaimer {
    background: rgb(0, 0, 0);
    border: 1px solid rgba(16, 185, 118, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #B8B8C7;
}

/* Footer */
footer {
    background: #0a0a0f;
    margin-top: 50px;
    padding: 80px 0 30px;
    border-top: 2px solid rgba(123, 97, 255, 0.3);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #A855F7, #10B976, transparent);
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-top {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(123, 97, 255, 0.2);
}

.footer-logo-section {
    max-width: 600px;
    margin: 0 auto;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(123, 97, 255, 0.2);
}

.footer-links-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    width: 100%;
}

.footer-partners-section {
    width: 100%;
    text-align: center;
}

.footer-column {
    display: inline-block;
    min-width: auto;
    vertical-align: top;
}

.footer-column h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #A855F7, #10B976);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.footer-column ul li {
    margin-bottom: 0;
}


.footer-column ul li a {
    color: #B8B8C7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #10B976;
    transform: translateX(5px);
}

.footer-partners-section h3 {
    text-align: center;
    margin-bottom: 20px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    /* filter: grayscale(100%); */
   
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 5px;
   
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    background: rgba(123, 97, 255, 0.1);
    box-shadow: 0 5px 15px rgba(123, 97, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #B8B8C7;
}

.footer-bottom .footer-logo-section {
    max-width: 100%;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 12px;
}

.footer-bottom .copyright {
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, #0b0b12, #000000);
    border: 1px solid rgba(123, 97, 255, 0.3);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(123, 97, 255, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(123, 97, 255, 0.2);
}

.popup-header h3 {
    color: #FFFFFF;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.popup-body {
    padding: 30px;
    text-align: center;
}

.popup-body p {
    color: #B8B8C7;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

.popup-body p a {
    color: #10B976;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popup-body p a:hover {
    color: #8B5CF6;
}

.age-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.popup-footer {
    padding: 20px 30px 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.popup-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
}

.popup-btn.primary {
    background: linear-gradient(135deg, #A855F7, #10B976);
    color: white;
    box-shadow: 0 5px 15px rgba(123, 97, 255, 0.4);
}

.popup-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 97, 255, 0.6);
}

.popup-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #B8B8C7;
    border: 1px solid rgba(123, 97, 255, 0.3);
}

.popup-btn.secondary:hover {
    background: rgba(255, 68, 68, 0.1);
    border-color: #ff4444;
    color: #ff4444;
}

.popup-btn.tertiary {
    background: transparent;
    color: #10B976;
    border: 1px solid #10B976;
}

.popup-btn.tertiary:hover {
    background: rgba(16, 185, 118, 0.1);
    transform: translateY(-2px);
}

/* Cookie Consent Banner (Bottom) */
#cookieConsentPopup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #0b0b12, #000000);
    border-top: 3px solid #A855F7;
    box-shadow: 0 -4px 20px rgba(123, 97, 255, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 20px;
}

#cookieConsentPopup.active {
    transform: translateY(0);
}

#cookieConsentPopup .popup-content {
    background: transparent;
    border: none;
    box-shadow: none;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

#cookieConsentPopup .popup-header {
    flex: 1;
    padding: 0;
    border: none;
    text-align: left;
}

#cookieConsentPopup .popup-header h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #FFFFFF;
}

#cookieConsentPopup .popup-body {
    flex: 2;
    padding: 0;
    text-align: left;
}

#cookieConsentPopup .popup-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #B8B8C7;
}

#cookieConsentPopup .popup-footer {
    flex: 1;
    padding: 0;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

#cookieConsentPopup .popup-btn {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 100px;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    #cookieConsentPopup {
        padding: 15px;
    }
    
    #cookieConsentPopup .popup-content {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    #cookieConsentPopup .popup-header {
        text-align: center;
        width: 100%;
    }
    
    #cookieConsentPopup .popup-body {
        text-align: center;
        width: 100%;
    }
    
    #cookieConsentPopup .popup-footer {
        justify-content: center;
        width: 100%;
        gap: 10px;
    }
    
    #cookieConsentPopup .popup-btn {
        padding: 8px 16px;
        font-size: 12px;
        min-width: 80px;
    }
}

/* Responsive Popups */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 20px;
    }
    
    .popup-header {
        padding: 25px 20px 15px;
    }
    
    .popup-body {
        padding: 25px 20px;
    }
    
    .popup-footer {
        padding: 15px 20px 25px;
        gap: 10px;
    }
    
    .popup-btn {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 100px;
    }
    
    .popup-header h3 {
        font-size: 20px;
    }
    
    .popup-body p {
        font-size: 15px;
    }
}

/* Highlighted Text */
.highlight {
    color: #10B976;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(16, 185, 118, 0.1), rgba(123, 97, 255, 0.1));
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(16, 185, 118, 0.3);
    transition: all 0.3s ease;
}

.highlight:hover {
    background: linear-gradient(135deg, rgba(16, 185, 118, 0.2), rgba(123, 97, 255, 0.2));
    box-shadow: 0 2px 8px rgba(16, 185, 118, 0.3);
}

.white-bold {
    color: white;
    font-weight: bold;
}

/* Policy Page Styling */
.regulation-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0b0b12, #000000);
}

.regulation-card {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(16, 185, 118, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.regulation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 185, 118, 0.2);
}

.regulation-card h2 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
    border-bottom: 2px solid rgba(123, 97, 255, 0.3);
    padding-bottom: 15px;
}

.regulation-card h3 {
    color: #FFFFFF;
    margin: 10px 0 5px 0;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.regulation-card h3:hover {
    color: #10B976;
}

.regulation-card h3 i {
    color: #A855F7;
    font-size: 24px;
}

.regulation-card p {
    color: #B8B8C7;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.regulation-card ul {
    margin: 15px 0 25px 0;
    padding-left: 20px;
}

.regulation-card ul li {
    color: #B8B8C7;
    margin-bottom: 8px;
    line-height: 1.5;
}

.regulation-card ul li strong {
    color: #FFFFFF;
    font-weight: 600;
}

.regulation-card strong {
    color: #10B976;
    font-weight: 600;
}

/* Policy Page Specific Elements */
.policy-last-updated {
    background: rgba(16, 185, 118, 0.1);
    border: 1px solid rgba(16, 185, 118, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.policy-last-updated strong {
    color: #10B976;
    font-weight: 700;
}

.policy-intro {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
    color: #FFFFFF;
}

.policy-highlight-box {
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.1), rgba(16, 185, 118, 0.1));
    border: 1px solid rgba(123, 97, 255, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
}

.policy-highlight-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, #A855F7, #10B976);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
}

.policy-highlight-box h4 {
    color: #10B976;
    margin-bottom: 15px;
    font-size: 20px;
}

.policy-highlight-box ul li {
    color: #B8B8C7;
    margin-bottom: 10px;
}

.policy-warning-box {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1), rgba(255, 68, 68, 0.05));
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
}

.policy-warning-box h4 {
    color: #ff4444;
    margin-bottom: 15px;
    font-size: 20px;
}

.policy-warning-box ul li {
    color: #B8B8C7;
    margin-bottom: 10px;
}

.policy-info-box {
    background: linear-gradient(135deg, rgba(16, 185, 118, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(16, 185, 118, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
}

.policy-info-box h4 {
    color: #10B976;
    margin-bottom: 15px;
    font-size: 20px;
}

.policy-info-box ul li {
    color: #B8B8C7;
    margin-bottom: 10px;
}

.policy-contact-info {
    background: rgba(10, 10, 10, 0.5);
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #10B976;
}

.policy-contact-info ul li {
    margin-bottom: 5px;
}

.policy-contact-info strong {
    color: #FFFFFF;
}

/* Cancel Subscription Page Styling */
.unsubscribe-header {
    text-align: center;
    margin-bottom: 40px;
}

.cancel-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.cancel-icon span {
    font-size: 40px;
    color: white;
}

.unsubscribe-header h2 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 600;
}

.unsubscribe-header p {
    color: #B8B8C7;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.unsubscribe-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 500;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(123, 97, 255, 0.3);
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input[type="email"]:focus {
    border-color: #10B976;
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 185, 118, 0.1);
}

.checkbox-group {
    text-align: left;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    color: #B8B8C7;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #10B976;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn-cancel {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
}

.btn-cancel:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.6);
}

.btn-keep {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #10B976;
    border: 2px solid #10B976;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-keep:hover {
    background: rgba(16, 185, 118, 0.1);
    transform: translateY(-2px);
}

.alternative-methods {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(123, 97, 255, 0.2);
}

.alternative-methods p {
    color: #B8B8C7;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.method-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.method-item {
    text-align: center;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(123, 97, 255, 0.1);
    border: 2px solid rgba(123, 97, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.method-icon:hover {
    background: rgba(123, 97, 255, 0.2);
    border-color: #10B976;
    transform: scale(1.1);
}

.method-icon span {
    font-size: 24px;
}

.method-item p {
    color: #B8B8C7;
    font-size: 13px;
    margin: 0;
    font-weight: 500;
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
    .regulation-section {
        padding: 40px 0;
    }
    
    .regulation-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .regulation-card h2 {
        font-size: 24px;
    }
    
    .regulation-card h3 {
        font-size: 20px;
        margin: 35px 0 15px 0;
    }
    
    .regulation-card h4 {
        font-size: 16px;
        margin: 25px 0 12px 0;
    }
    
    .policy-highlight-box,
    .policy-warning-box,
    .policy-info-box {
        padding: 20px;
    }
    
    .unsubscribe-header h2 {
        font-size: 28px;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cancel,
    .btn-keep {
        width: 100%;
        max-width: 300px;
    }
    
    .method-grid {
        gap: 20px;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
    }
    
    .method-icon span {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .regulation-card {
        padding: 25px 15px;
    }
    
    .regulation-card h2 {
        font-size: 22px;
    }
    
    .regulation-card h3 {
        font-size: 18px;
    }
    
    .policy-highlight-box,
    .policy-warning-box,
    .policy-info-box {
        padding: 15px;
    }
    
    .unsubscribe-header h2 {
        font-size: 24px;
    }
    
    .method-grid {
        flex-direction: column;
        gap: 15px;
    }
}
@media (max-width: 992px) {
    .header-content {
        height: 70px;
    }
    
    .header-logo {
        height: 45px;
    }
    
    .back-button {
        top: 90px;
        left: 15px;
        width: 45px;
        height: 45px;
    }
    
    .casino-card {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }
    
    .ranking-number {
        font-size: 40px;
        position: absolute;
        top: 10px;
        left: 20px;
    }

    .casino-cta {
        width: 100%;
        max-width: 300px;
        margin-top: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-column:first-child {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(123, 97, 255, 0.2);
        padding-bottom: 30px;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .header-content {
        height: 60px;
    }
    
    .header-logo {
        height: 65px;
    }
    
    .back-button {
        top: 80px;
        left: 10px;
        width: 100px;
        height: 40px;
        font-size: 18px;
    }
    
    .back-button::before {
        font-size: 20px;
    }
    
    .casino-card {
        padding: 20px;
    }
    
    .feature-tags {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-middle {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links-section {
        justify-content: center;
        gap: 40px;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .partner-logos {
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .casino-card {
        padding: 15px;
    }
    
    .ranking-number {
        font-size: 28px;
        min-width: 60px;
    }
    
    .header-content {
        height: 50px;
    }
    
    .header-logo {
        height: 35px;
    }
    
    .back-button {
        top: 70px;
        left: 10px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .back-button::before {
        font-size: 18px;
    }
    
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .partner-logo {
        height: 30px;
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(17, 17, 25, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(123, 97, 255, 0.2);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .header-content {
        position: relative;
    }
}
