/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body.mobile-menu-open {
    overflow-x: hidden;
    overflow-y: hidden;
}

.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.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-popup.hidden {
    display: none;
}

.age-popup.show {
    display: flex;
}

.age-popup-content {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.age-popup-header h2 {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.age-popup-body p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #cccccc;
}

.age-popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-confirm, .btn-deny {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.btn-confirm {
    background: #00ff88;
    color: #000;
}

.btn-confirm:hover {
    background: #00cc6a;
    transform: translateY(-2px);
}

.btn-deny {
    background: #ff4444;
    color: #fff;
}

.btn-deny:hover {
    background: #cc3333;
    transform: translateY(-2px);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 3px solid #00ff88;
    padding: 25px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 400px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.cookie-content a:hover {
    text-decoration: none;
    border-bottom-color: #00ff88;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-accept, .btn-decline {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
}

.btn-accept {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-accept:hover {
    background: linear-gradient(45deg, #00cc6a, #00aa55);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.btn-decline {
    background: transparent;
    color: #cccccc;
    border: 2px solid #666;
}

.btn-decline:hover {
    background: #333;
    border-color: #999;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    margin-bottom: 5px;
}

.logo .tagline {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 300;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00ff88;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #00ff88;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="slots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%2300ff88" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23slots)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.checkmark {
    color: #00ff88;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.casino-showcase {
    display: grid;
    gap: 30px;
}

.casino-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.casino-rank {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #00ff88;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.casino-offer-label {
    background: #ff4444;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.casino-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.casino-logo img {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}

.casino-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.casino-offer {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.casino-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.slots-count {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.rating {
    background: #00ff88;
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
}

.play-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-button:nth-of-type(1) { background: #00ff88; color: #000; }
.play-button:nth-of-type(2) { background: #0066cc; color: #fff; }
.play-button:nth-of-type(3) { background: #00aaff; color: #fff; }
.play-button:nth-of-type(4) { background: #ff4444; color: #fff; }
.play-button:nth-of-type(5) { background: #8b4513; color: #fff; }
.play-button:nth-of-type(6) { background: #ff8800; color: #fff; }
.play-button:nth-of-type(7) { background: #ff69b4; color: #fff; }
.play-button:nth-of-type(8) { background: #ffff00; color: #000; }
.play-button:nth-of-type(9) { background: #ffd700; color: #000; }
.play-button:nth-of-type(10) { background: #800080; color: #fff; }

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.visit-link {
    color: #00ff88;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

.visit-link:hover {
    text-decoration: underline;
}

.casino-disclaimer {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.casino-disclaimer small {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Other Deals Section */
.other-deals {
    background: #1a1a1a;
    padding: 60px 0;
    text-align: center;
}

.other-deals h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00ff88;
}

.other-deals p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.social-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #00ff88;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00ff88;
    color: #000;
}

.deals-cta {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    color: #333;
}

.deals-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 15px;
}

.deals-cta p {
    color: #666;
    margin-bottom: 25px;
}

.discover-button {
    background: #00ff88;
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discover-button:hover {
    background: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #00ff88;
}

.footer-links h4,
.responsible-gambling h4 {
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff88;
}

.responsible-gambling p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.regulatory-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.regulatory-item {
    background: #333;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 50px;
    min-height: 50px;
}

.regulatory-item:hover {
    background: #00ff88;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.regulatory-logo {
    height: 60px;
    width: 80px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.footer-logo {
    display: flex;
    align-items: start;
    gap: 10px;
}

.footer-logo-image {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tagline{
        display: none;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .casino-card {
        padding: 20px;
    }
    
    .casino-logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .casino-stats {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 15px;
    }
    
    .cookie-content p {
        min-width: auto;
        font-size: 0.95rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        gap: 12px;
    }
    
    .btn-accept, .btn-decline {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 100px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .regulatory-logos {
        justify-content: center;
        gap: 10px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .footer-logo {
        gap: 8px;
    }
    
    .footer-logo-image {
        height: 25px;
    }
    
    .regulatory-item {
        padding: 8px;
        font-size: 0.8rem;
        min-width: 40px;
        min-height: 40px;
    }
    
    .regulatory-logo {
        height: 24px;
        width: 24px;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    visibility: hidden;
    opacity: 0;
    margin: 0;
    flex-shrink: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #00ff88;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hide mobile menu button on desktop */
@media (min-width: 857px) {
    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 856px) {
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1001;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 80vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 2px solid #00ff88;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .main-nav.active {
        display: flex;
        right: 0;
    }
    
    .main-nav .nav-link {
        display: block;
        padding: 20px 30px;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid rgba(0, 255, 136, 0.1);
        transition: all 0.3s ease;
    }
    
    .main-nav .nav-link:hover,
    .main-nav .nav-link.active {
        background: rgba(0, 255, 136, 0.1);
        color: #00ff88;
        transform: translateX(10px);
    }
    
    .main-nav .nav-link.active::after {
        display: none;
    }
    
    /* Overlay for mobile menu */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Adjust header for mobile */
    .header-content {
        position: relative;
        justify-content: space-between;
        align-items: center;
    }
    
    .header-content .logo {
        flex: 1;
    }
    
    .header-content .mobile-menu-toggle {
        flex-shrink: 0;
        margin-left: 15px;
        position: relative;
        z-index: 1001;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo .tagline {
        font-size: 0.8rem;
    }
    
    .logo-image {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .main-nav {
        width: 100%;
        max-width: 100vw;
        right: -100%;
    }
    
    .main-nav .nav-link {
        padding: 25px 20px;
        font-size: 1.2rem;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo .tagline {
        font-size: 0.75rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .casino-card {
        padding: 15px;
    }
    
    .age-popup-content {
        padding: 30px 20px;
    }
    
    .age-popup-buttons {
        flex-direction: column;
    }
    
    .btn-confirm, .btn-deny {
        width: 100%;
    }
    
    .cookie-banner {
        padding: 20px 0;
    }
    
    .cookie-content {
        padding: 0 10px;
        gap: 15px;
    }
    
    .cookie-content p {
        font-size: 0.9rem;
    }
    
    .btn-accept, .btn-decline {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: 80px;
    }
}
