/* Global Styles */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #FF9F1C;
    --accent-color: #FFD700;
    --text-color: #2D3142;
    --light-bg: #FFF8F0;
    --dark-orange: #E85D04;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-bg);
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF 100%);
    color: var(--text-color);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    top: -300px;
    right: -300px;
    opacity: 0.1;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    bottom: -200px;
    left: -200px;
    opacity: 0.1;
}

.hero h1 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-color);
}

.hero p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--dark-orange));
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--dark-orange), var(--primary-color));
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-toggler {
        border: none;
        padding: 0;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-nav {
        padding: 1rem 0;
        background: var(--light-bg);
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .nav-link {
        margin-left: 0;
        padding: 0.8rem 1.5rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.hero p,
.hero .btn {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero p {
    animation-delay: 0.4s;
}

.hero .btn {
    animation-delay: 0.6s;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

.feature-item {
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: var(--light-bg);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    display: block;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.stats-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stats-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-card {
        margin-bottom: 1rem;
    }
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.game-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-image {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
}

.game-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-content {
    padding: 1.5rem;
}

.game-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.game-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-color);
}

.game-meta span {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.game-meta i {
    color: var(--primary-color);
}

.game-meta .btn-sm {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .games-section {
        padding: 3rem 0;
    }
    
    .game-card {
        margin-bottom: 2rem;
    }
}

/* Footer */
.footer {
    background-color: #fff;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.disclaimer-section {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 1rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
}

.certification-images {
    padding: 1rem 0;
}

.certification-images .row {
    gap: 2rem;
}

.cert-image {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cert-image:hover {
    opacity: 1;
}

.separator {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
}

.copyright-text {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

@media (max-width: 767.98px) {
    .footer {
        padding: 2rem 0;
    }

    .footer-links {
        gap: 1rem;
    }

    .disclaimer-box {
        padding: 1rem;
    }

    .cert-image {
        height: 40px;
    }
} 