/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #161925;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15000;
    padding: 20px;
}

.age-verification-content {
    background: #2c3e50;
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.age-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.age-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.age-verification-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

.age-verification-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e6ed;
}

.age-verification-content p:last-of-type {
    margin-bottom: 40px;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-enter {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-leave {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-leave:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.2);
}

.age-verification.hidden {
    display: none;
}

/* Game Popup */
.game-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.game-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.game-popup-content {
    position: relative;
    background: #2c3e50;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.game-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-popup-header h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.close-game-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-game-btn:hover {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    transform: scale(1.1);
}

.game-iframe-container {
    position: relative;
    flex: 1;
    min-height: 600px;
    background: #1a252f;
}

.game-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #1a252f;
}

.game-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1a252f;
    color: #ffffff;
    z-index: 1;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 212, 255, 0.3);
    border-top: 4px solid #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.game-loading p {
    font-size: 16px;
    color: #b8c6db;
    margin: 0;
}

.game-popup.hidden {
    display: none;
}

.game-popup.loading .game-loading {
    display: flex;
}

.game-popup:not(.loading) .game-loading {
    display: none;
}

/* Game Popup Responsive */
@media (max-width: 1024px) {
    .game-popup-content {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .game-iframe-container {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .game-popup {
        padding: 10px;
    }
    
    .game-popup-content {
        max-width: 100vw;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .game-popup-header {
        padding: 15px 20px;
    }
    
    .game-popup-header h3 {
        font-size: 18px;
    }
    
    .close-game-btn {
        font-size: 28px;
        width: 35px;
        height: 35px;
    }
    
    .game-iframe-container {
        min-height: 400px;
    }
    
    .loading-spinner {
        width: 40px;
        height: 40px;
    }
    
    .game-loading p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .game-popup {
        padding: 5px;
    }
    
    .game-popup-content {
        border-radius: 10px;
    }
    
    .game-popup-header {
        padding: 12px 15px;
    }
    
    .game-popup-header h3 {
        font-size: 16px;
    }
    
    .close-game-btn {
        font-size: 24px;
        width: 30px;
        height: 30px;
    }
    
    .game-iframe-container {
        min-height: 350px;
    }
    
    .loading-spinner {
        width: 35px;
        height: 35px;
        border-width: 3px;
    }
}

/* Access Denied Screen */
.access-denied {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    padding: 20px;
}

.access-denied-content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.access-denied h1 {
    font-size: 48px;
    font-weight: 800;
    color: #e74c3c;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
}

.access-denied.hidden {
    display: none;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-content {
    background: #2c3e50;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cookie-icon {
    margin-bottom: 20px;
}

.cookie-icon img {
    width: 60px;
    height: 60px;
}

.cookie-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e6ed;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-accept {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-learn-more {
    background: transparent;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.btn-learn-more:hover {
    color: #00d4ff;
}

.cookie-consent.hidden {
    display: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

.navbar {
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #FFF;
font-feature-settings: 'liga' off, 'clig' off;
font-family: Poppins;
font-size: 28px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.56px;
text-transform: uppercase;
text-decoration: none;
}

.nav-logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    border-radius: 40px;
border: 1px solid #FFF;
padding: 10px 20px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00d4ff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 180px 0 60px;
    min-height: auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.casino-graphics {
    position: relative;
    margin-bottom: 40px;
    height: 200px;
}

.casino-element {
    position: absolute;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.casino-element.cards {
    top: 20px;
    left: 20%;
    width: 80px;
    animation-delay: 0s;
}

.casino-element.chips {
    top: 60px;
    right: 25%;
    width: 70px;
    animation-delay: 2s;
}

.casino-element.dice {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #ffffff;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-content {
    background-image: url(../images/hero.png);
    background-position: center;
    background-size: cover;
    padding: 40px;
    border-radius: 16px;
}

.hero-cta-content p {
    font-size: 18px;
    color: #e0e6ed;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero-subtitle {
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 40px !important;
}

.cta-button {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff;
    border: none;
    padding: 20px 45px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

/* Features Section */
.hero-features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.03);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-left {
    padding-right: 40px;
}

.hero-tagline {
    font-size: 28px;
    font-weight: 700;
    color: #7ED321;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-main-text p {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
}

.hero-right {
    display: flex;
    justify-content: center;
}

.features-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 35px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 480px;
    width: 100%;
}

.features-card .feature-item {
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 0 0 30px 0;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-card .feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.features-card .feature-item:hover {
    transform: none;
    background: transparent;
    box-shadow: none;
}

.features-card .feature-number {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1;
}

.features-card .feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.features-card .feature-item p {
    font-size: 14px;
    color: #b8c6db;
    line-height: 1.5;
    margin: 0;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.03);
}

.stats h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #ffffff;
}

.stats > .container > p {
    text-align: center;
    font-size: 18px;
    color: #b8c6db;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-icon img {
    width: 60px;
    height: 60px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #b8c6db;
    line-height: 1.4;
}

/* Games Section */
.games {
    padding: 80px 0;
}

.games h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #ffffff;
}

.games > .container > p {
    text-align: center;
    font-size: 18px;
    color: #b8c6db;
    margin-bottom: 50px;
}

.game-featured {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
background: #1E2131;
padding: 20px;
}

.game-image {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
  
    padding: 40px 30px 30px;
    text-align: center;
}

.game-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.play-button {
   
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    border-radius: 16px;
background: radial-gradient(286.37% 67% at 4.6% 40.8%, #00E7F7 0%, #00C2F1 100%);
box-shadow: 0px -3px 3px 0px #003744 inset;
text-decoration: none;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.03);
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #ffffff;
}

.testimonials > .container > p {
    text-align: center;
    font-size: 18px;
    color: #b8c6db;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar {
    max-width: 170px;
    width: 100%;
 
    overflow: hidden;
    margin-bottom: 20px;
}

.testimonial-avatar img {
    width: 100%;

}

.testimonial-content p {
    font-size: 16px;
    color: #e0e6ed;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #00d4ff;
    font-size: 16px;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

.about-text p {
    font-size: 16px;
    color: #b8c6db;
    line-height: 1.7;
    margin-bottom: 20px;
}

.learn-more-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
    text-decoration: none;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.03);
}

.features h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #ffffff;
}

.features > .container > p {
    text-align: center;
    font-size: 18px;
    color: #b8c6db;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-detailed {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-detailed:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    margin-bottom: 25px;
}

.feature-icon img {
    width: 70px;
    height: 70px;
}

.feature-detailed h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.feature-detailed p {
    font-size: 16px;
    color: #b8c6db;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact > .container > p {
    text-align: center;
    font-size: 18px;
    color: #b8c6db;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b8c6db;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

/* Footer */
.footer {
    background: #3a4a60;
    padding: 50px 0 30px;
}

.footer-disclaimer {
    margin-bottom: 40px;
}

.footer-disclaimer h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: left;
}

.footer-disclaimer p {
    color: #e0e6ed;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 400;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    flex: 1;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #e0e6ed;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-center {
    flex: 1;
    text-align: center;
}

.footer-center p {
    color: #e0e6ed;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Age Verification Responsive */
@media (max-width: 768px) {
    .age-verification-content {
        padding: 40px 30px;
    }
    
    .age-verification-content h2 {
        font-size: 28px;
    }
    
    .age-verification-content p {
        font-size: 15px;
    }
    
    .age-badge {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }
    
    .age-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-enter,
    .btn-leave {
        width: 200px;
        padding: 16px 35px;
        font-size: 15px;
    }
    
    .access-denied h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .age-verification-content {
        padding: 30px 25px;
        margin: 20px;
    }
    
    .age-verification-content h2 {
        font-size: 24px;
    }
    
    .age-verification-content p {
        font-size: 14px;
    }
    
    .age-badge {
        width: 60px;
        height: 60px;
        font-size: 18px;
        border: 3px solid #ffffff;
    }
    
    .btn-enter,
    .btn-leave {
        width: 180px;
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .access-denied h1 {
        font-size: 28px;
        padding: 0 20px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-left {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-right {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-detailed {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(44, 62, 80, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero {
        padding: 180px 0 60px;
    }
    
    .hero-tagline {
        font-size: 24px;
    }
    
    .hero-main-text p {
        font-size: 18px;
    }
    
    .features-card {
        padding: 30px 25px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-cta-content p {
        font-size: 16px;
    }
    
    .casino-graphics {
        height: 150px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 30px;
    }
    
    .footer-disclaimer h2 {
        text-align: center;
        font-size: 20px;
    }
    
    .footer-disclaimer p {
        text-align: center;
    }
    
    .cookie-content {
        margin: 20px;
        padding: 30px 25px;
    }
    
    .cookie-content h3 {
        font-size: 24px;
    }
    
    .cookie-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-tagline {
        font-size: 20px;
    }
    
    .hero-main-text p {
        font-size: 16px;
    }
    
    .features-card {
        padding: 25px 20px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 18px 35px;
        font-size: 16px;
    }
    
    .casino-graphics {
        height: 120px;
    }
    
    .casino-element.cards {
        width: 60px;
    }
    
    .casino-element.chips {
        width: 50px;
    }
    
    .casino-element.dice {
        width: 45px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .game-info {
        padding: 30px 20px 20px;
    }
    
    .game-info h3 {
        font-size: 24px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon img {
        width: 18px;
        height: 18px;
    }
    
    .footer-disclaimer h2 {
        font-size: 18px;
    }
    
    .footer-disclaimer p {
        font-size: 13px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Padding Adjustments for Fixed Header */
section {
    scroll-margin-top: 80px;
}

/* Thank You Page Styles */
.thank-you {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-icon {
    margin-bottom: 40px;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #00d4ff;
    stroke-miterlimit: 10;
    margin: 0 auto;
    position: relative;
    animation: checkmark-scale 0.6s ease-in-out;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    animation: checkmark-circle 0.6s ease-in-out;
}

.checkmark-stem {
    position: absolute;
    width: 3px;
    height: 20px;
    background: #00d4ff;
    left: 32px;
    top: 35px;
    transform: rotate(45deg);
    animation: checkmark-stem 0.4s ease-in-out 0.2s both;
}

.checkmark-kick {
    position: absolute;
    width: 3px;
    height: 12px;
    background: #00d4ff;
    left: 25px;
    top: 42px;
    transform: rotate(-45deg);
    animation: checkmark-kick 0.4s ease-in-out 0.3s both;
}

@keyframes checkmark-scale {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes checkmark-circle {
    0% { stroke-dasharray: 0 251; }
    100% { stroke-dasharray: 251 251; }
}

@keyframes checkmark-stem {
    0% { height: 0; }
    100% { height: 20px; }
}

@keyframes checkmark-kick {
    0% { height: 0; }
    100% { height: 12px; }
}

.thank-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #e0e6ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #00d4ff;
}

.thank-content p {
    font-size: 16px;
    color: #b8c6db;
    line-height: 1.6;
    margin-bottom: 20px;
}

.thank-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #00d4ff;
    color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.2);
}

.thank-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.thank-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.thank-info ul {
    list-style: none;
    padding: 0;
}

.thank-info li {
    color: #b8c6db;
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.thank-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Thank You Page Responsive */
@media (max-width: 768px) {
    .thank-content h1 {
        font-size: 36px;
    }
    
    .thank-content h2 {
        font-size: 20px;
    }
    
    .thank-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .thank-info {
        padding: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .thank-you {
        padding: 100px 0 60px;
    }
    
    .thank-content h1 {
        font-size: 28px;
    }
    
    .checkmark {
        width: 60px;
        height: 60px;
    }
    
    .checkmark-circle {
        width: 60px;
        height: 60px;
    }
    
    .checkmark-stem {
        left: 24px;
        top: 26px;
        height: 15px;
    }
    
    .checkmark-kick {
        left: 19px;
        top: 31px;
        height: 9px;
    }
}
              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                