/* Global Styles */
:root {
    --primary-color: #6C4AB6;
    --secondary-color: #8D72E1;
    --accent-color: #8D9EFF;
    --dark-color: #1A1A2E;
    --light-color: #f8f9fa;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

/* Navbar Styles */
.navbar {
    background: var(--dark-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--light-color);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    background: var(--gradient);
    padding: 160px 0 100px;
    color: white;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.age-warning {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--light-color);
}

.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-section .lead {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.about-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.about-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-right: 1rem;
    display: inline-block;
}

.feature-list li strong {
    display: block;
    color: var(--primary-color);
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.feature-list li p {
    color: #666;
    margin: 0;
}

.about-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.about-box:hover {
    transform: translateY(-5px);
}

.about-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.about-box p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.about-stats {
    margin-top: 3rem;
}

.stat-item {
    padding: 2rem;
    text-align: center;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.game-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.game-card h3 {
    color: var(--primary-color);
    margin: 1rem 0;
}

.btn-play {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: scale(1.05);
    color: white;
}

.btn-see-more {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-see-more:hover {
    background: var(--primary-color);
    color: white;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: #f1f1f1;
}

.disclaimer-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--light-color);
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.disclaimer-row {
    text-align: center;
    margin-bottom: 2rem;
}

/* Footer Images Row Styles */
.images-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.images-row .col-6 {
    flex: 0 0 auto;
    width: auto;
    text-align: center;
}

.footer-image {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.footer-image:hover {
    opacity: 0.8;
}

.links-row {
    text-align: center;
    margin-bottom: 2rem;
}

.links-row a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-row a:hover {
    color: var(--accent-color);
}

.copyright-row {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Disclaimer Styles */
.footer-disclaimer {
    background: rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.footer-disclaimer h4 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-disclaimer p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer-points {
    list-style-type: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.disclaimer-points li {
    color: #555;
    padding: 0.5rem 0;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.disclaimer-points li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.disclaimer-highlight {
    font-weight: 500;
    color: #333;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 5px;
    border-left: 4px solid #ffc107;
}

/* Games Page Styles */
.games-header {
    background: var(--gradient);
    padding: 160px 0 80px;
    text-align: center;
    color: white;
}

.games-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.games-header .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

.games-grid {
    padding: 80px 0;
    background: #f8f9fa;
}

.games-grid .game-card {
    margin-bottom: 40px;
}

.games-grid .game-card p {
    color: #666;
    margin: 1rem 0;
    min-height: 48px;
}

/* Policy Pages Styles */
.policy-section {
    padding: 160px 0 80px;
    background: var(--light-color);
}

.policy-section h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.policy-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.policy-content p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content ul li {
    color: #444;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Play Responsible Section */
.play-responsible-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.play-responsible-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.play-responsible-section .lead {
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.responsible-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.responsible-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.responsible-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.responsible-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.responsible-card ul li {
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.responsible-card ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.responsible-info-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
}

.responsible-info-box h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    text-align: center;
}

.warning-signs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warning-signs li {
    color: #666;
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
}

.warning-signs li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.responsible-support {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.responsible-support h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.support-resources {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.support-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.support-link:hover {
    transform: translateY(-2px);
    color: white;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background: var(--dark-color);
        padding: 1rem;
        margin-top: 1rem;
    }

    .games-header h1 {
        font-size: 2.5rem;
    }

    .policy-section {
        padding: 120px 0 60px;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.6rem;
    }

    .policy-content h3 {
        font-size: 1.3rem;
    }

    .about-content, .about-features {
        margin-bottom: 2rem;
    }
    
    .about-box {
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        margin-bottom: 1.5rem;
    }

    .responsible-card {
        margin-bottom: 1.5rem;
    }

    .support-resources {
        flex-direction: column;
        align-items: center;
    }

    .support-link {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .footer-image {
        max-width: 100px;
    }

    .links-row div {
        margin-bottom: 1rem;
    }

    .games-header {
        padding: 120px 0 60px;
    }
    
    .games-header h1 {
        font-size: 2rem;
    }

    .policy-section h1 {
        font-size: 2rem;
    }

    .policy-content {
        padding: 1rem;
    }

    .policy-content h2 {
        font-size: 1.4rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }

    .about-section {
        padding: 60px 0;
    }
    
    .about-content h3, .about-features h3 {
        font-size: 1.6rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }

    .play-responsible-section {
        padding: 60px 0;
    }

    .responsible-info-box {
        padding: 1.5rem;
    }

    .warning-signs li {
        margin-bottom: 0.8rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section, .about-section, .games-section, .contact-section {
    animation: fadeIn 1s ease-out;
}

/* Game Page Styles */
.game-section {
    min-height: calc(100vh - 300px);
    padding: 3rem 0;
}

.game-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.game-disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.disclaimer-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.game-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 1000px;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.game-frame {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
    background: #fff;
} 