:root {
    --primary-color: #6C63FF;
    --secondary-color: #FF6B6B;
    --dark-color: #2A2A2A;
    --light-color: #FFFFFF;
    --background-color: #F8F9FA;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    padding-top: 0;
}

.age-verification {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 20px 15px;
    text-align: center;
}

.age-verification p {
    margin: 0 0 15px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
}

.age-verification .buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.age-verification .btn {
    background: var(--light-color);
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 120px;
    display: inline-block;
}

.age-verification .btn:hover {
    transform: translateY(-2px);
}

.age-verification .btn-yes {
    background: var(--light-color);
    color: var(--primary-color);
}

.age-verification .btn-no {
    background: var(--secondary-color);
    color: var(--light-color);
}

@media (max-width: 575.98px) {
    .age-verification {
        padding: 320px 10px;
    }

    .age-verification p {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .age-verification .buttons {
        gap: 10px;
    }

    .age-verification .btn {
        padding: 10px 25px;
        min-width: 100px;
        font-size: 0.95rem;
    }
}

@media (max-width: 359.98px) {
    .age-verification .buttons {
        flex-direction: column;
        gap: 8px;
    }

    .age-verification .btn {
        width: 100%;
        max-width: 200px;
    }
}

.navbar {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 20px 0;
    }
    
    .nav-link {
        padding: 10px 0;
    }
}

.hero-section {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.hero-header {
    text-align: center;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-slogan {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 0;
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    gap: 20px;
}

.feature-item {
    background: var(--light-color);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: left;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    color: var(--primary-color);
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    padding: 15px;
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    margin: 0;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        margin-bottom: 40px;
    }
}

.features-section {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(108, 99, 255, 0.05) 100%);
}

.games-section {
    padding: 40px 0;
    background: var(--light-color);
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header .disclaimer {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.games-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 -15px;
}

.game-card {
    flex: 1;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: transform 0.3s ease;
}

.game-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.game-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.game-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.game-btn i {
    margin-right: 8px;
}

.game-btn:hover {
    background: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .games-container {
        flex-direction: column;
        margin: 0;
    }
    
    .game-card {
        margin-bottom: 30px;
    }
    
    .game-card:last-child {
        margin-bottom: 0;
    }
}

.features-image {
    position: relative;
}

.disclaimer-section {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.disclaimer-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.disclaimer-card:hover {
    transform: translateY(-5px);
}

.disclaimer-card i {
    color: var(--primary-color);
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
}

.disclaimer-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.disclaimer-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .disclaimer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
}

.features-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.young-adults-section, .tourists-section, .mature-players-section, .mobile-users-section {
    padding: 40px 0;
}

.young-adults-section {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.tourists-section, .mobile-users-section {
    background: var(--light-color);
}

.mature-players-section {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(108, 99, 255, 0.05) 100%);
}

.content-box {
    padding: 20px;
}

.content-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.highlight-box {
    background: var(--light-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.highlight-box h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features-list {
    margin: 30px 0;
}

.feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(108, 99, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-row:hover {
    transform: translateX(10px);
    background: rgba(108, 99, 255, 0.1);
}

.feature-row i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.feature-row span {
    font-size: 1.1rem;
    color: #444;
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed rgba(108, 99, 255, 0.1);
}

.rounded-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.rounded-image:hover {
    transform: translateY(-10px);
}

@media (max-width: 991.98px) {
    .content-box {
        padding: 0;
        margin-bottom: 40px;
    }
    
    .content-box h2 {
        font-size: 2rem;
    }
    
    .highlight-box h3 {
        font-size: 1.5rem;
    }
    
    .tourists-section .content-box {
        margin-top: 40px;
        margin-bottom: 0;
    }
}

.features-image:hover img {
    transform: translateY(-10px);
}

.footer {
    background: var(--dark-color);
    padding: 60px 0 30px;
    color: var(--light-color);
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-disclaimer {
    max-width: 600px;
    margin: 0 auto 40px;
}

.footer-disclaimer p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer-disclaimer .age-disclaimer {
    color: var(--secondary-color);
    font-weight: 500;
}

.footer-links {
    margin-bottom: 40px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 575.98px) {
    .footer-links ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

.features-content {
    padding-left: 30px;
}

/* About Page Styles */
.about-hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.about-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 40px;
}

.about-features .feature {
    background: var(--light-color);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-features .feature:hover {
    transform: translateY(-5px);
}

.about-features .feature i {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-features .feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Contact Section Styles */
.contact-section {
    padding: 60px 0;
    background: var(--light-color);
}

.contact-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-method {
    text-align: center;
    padding: 20px;
}

.contact-method i {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-method h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.btn-chat {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-chat:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Policy Pages Styles */
.policy-section {
    padding: 120px 0 60px;
    background: var(--light-color);
}

.policy-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.policy-block {
    margin-bottom: 30px;
}

.policy-block h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.policy-block p {
    color: #666;
    margin-bottom: 15px;
}

.policy-block ul {
    list-style-type: none;
    padding-left: 0;
}

.policy-block ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
}

.policy-block ul li:before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Games Page Additional Styles */
.games-hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.game-features-section {
    padding: 60px 0;
    background: var(--light-color);
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

@media (max-width: 991.98px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-content {
        text-align: center;
        margin-bottom: 40px;
    }
}

.game-play-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.game-content {
    max-width: 1000px;
    margin: 0 auto;
}

.game-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.game-frame {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.game-iframe {
    max-width: 100%;
    border-radius: 10px;
}

.game-disclaimer {
    background: var(--light-color);
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
}

.game-disclaimer p {
    color: #666;
    margin: 0;
    font-size: 1.1rem;
}

.game-disclaimer i {
    color: var(--secondary-color);
    margin-right: 10px;
}

@media (max-width: 991.98px) {
    .game-frame {
        padding: 15px;
    }
    
    .game-iframe {
        height: 400px;
    }
}

@media (max-width: 575.98px) {
    .game-iframe {
        height: 300px;
    }
    
    .game-content h1 {
        font-size: 2rem;
    }
}

.feature-box {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .features-section {
        padding: 60px 0;
    }

    .features-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }

    .feature-box:hover {
        transform: translateY(-10px);
    }
}
