/* Global Styles */
:root {
    --primary-color: #6C63FF;
    --secondary-color: #FF6B6B;
    --accent-color: #4ECDC4;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --warning-color: #FF7675;
    --gradient-start: #6C63FF;
    --gradient-end: #FF6B6B;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    margin: 0 auto;
    border-radius: 2px;
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.top-bar i {
    margin-right: 5px;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section Styles */
.hero-section {
    background: url('../img/bg.png') center/cover;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(108, 99, 255, 0.9), rgba(255, 107, 107, 0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.text-gradient-hero {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
    font-weight: 500;
}

.feature-badge i {
    margin-right: 8px;
}

.warning-badge {
    background: rgba(255,119,117,0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin: 0 10px;
}

/* Game Card Styles */
.game-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.game-card-image {
    position: relative;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.game-card-content {
    padding: 25px;
}

.game-title {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.game-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.btn-play {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: none;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.btn-play:hover {
    color: white;
    opacity: 0.9;
}

.game-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.game-badge {
    background: #f0f0f0;
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.game-badge i {
    color: var(--primary-color);
}

/* Games Section */
.games-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: white;
}

.feature-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #f8f9fa;
}

.disclaimer-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.disclaimer-text {
    color: #666;
    line-height: 1.8;
}

/* Footer Styles */
.footer {
    background: var(--dark-color);
    color: white;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-link {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-badge {
    height: 50px;
    width: auto;
}

.footer-disclaimer {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-badge {
        width: 100%;
        text-align: center;
    }
    
    .footer-link {
        display: block;
        margin: 10px 0;
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: center;
    }

    .game-card {
        margin: 0 15px;
    }
    
    .game-title {
        font-size: 1.3rem;
    }
    
    .btn-play {
        padding: 10px 30px;
        font-size: 1rem;
    }
    
    .game-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .game-badge {
        width: 100%;
        justify-content: center;
    }
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 8px 20px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

/* Age Warning Styles */
.age-warning .badge {
    font-size: 1rem;
    margin: 0 5px;
}

/* Link Styles */
a {
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: none;
    opacity: 0.9;
} 

/* Game Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-header {
    border-bottom: none;
    padding: 20px 30px;
}

.modal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-color);
}

.modal-body {
    padding: 0 30px 30px;
}

.game-warning {
    margin: 0 auto;
    max-width: 600px;
}

.game-warning .alert {
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    background-color: rgba(255, 193, 7, 0.2);
    color: #856404;
}

.game-warning i {
    margin-right: 10px;
    font-size: 1.1em;
}

.game-frame-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f8f9fa;
}

.game-frame-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 0 20px 20px;
    }
    
    .game-warning .alert {
        font-size: 0.9rem;
        padding: 10px;
    }
} 

/* Contact Section Styles */
.contact-section {
    background-color: var(--light-color);
}

.contact-info {
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-card {
    padding: 30px;
    transition: transform 0.3s ease;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 0;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--gradient-end);
}

.contact-text {
    color: #666;
    line-height: 1.8;
}

.contact-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact-info {
        padding: 20px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 24px;
    }
    
    .contact-card h3 {
        font-size: 1.3rem;
    }
} 

/* Policy Pages Styles */
.policy-section {
    background-color: var(--light-color);
}

.policy-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.policy-content h2 {
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.policy-content h3 {
    color: var(--dark-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.policy-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.policy-content ul li {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 5px;
}

.policy-notice {
    background: rgba(108, 99, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.policy-notice p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 25px;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
} 