/* Modern Color Scheme */
:root {
    --primary-color: #1a1f3c;
    --secondary-color: #ff3366;
    --accent-color: #00d4ff;
    --text-color: #2d3436;
    --light-bg: #f8f9fa;
    --dark-bg: #151928;
    --gradient-1: linear-gradient(45deg, #ff3366, #ff6b6b);
    --gradient-2: linear-gradient(45deg, #00d4ff, #00ff87);
    --card-bg: rgba(255, 255, 255, 0.1);
    --glass-effect: rgba(255, 255, 255, 0.05);
}

/* Age Verification */
.age-verification {
    background: var(--dark-bg);
    padding: 2rem 0;
    color: white;
}

.age-verification-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin: 0 1rem;
}

.age-verification h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.age-verification p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.age-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.age-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .age-verification {
        padding: 1rem 0;
    }

    .age-verification-content {
        padding: 1.5rem 1rem;
        margin-top: 300px!important;
        margin-bottom: 300px!important;
    }

    .age-verification h2 {
        font-size: 1.4rem;
    }

    .age-verification p {
        font-size: 1rem;
    }

    .age-buttons .btn {
        padding: 0.6rem 1.5rem;
        min-width: 160px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .age-verification-content {
        margin: 0 0.5rem;
    }

    .age-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .age-buttons .btn {
        width: 100%;
        margin: 0.25rem 0;
    }
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

/* Modern Navbar */
.navbar {
    background: var(--dark-bg) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 31, 60, 0.95) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05) rotate(-2deg);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Enhanced Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 31, 60, 0.8), rgba(26, 31, 60, 0.9)),
                url('../img/back.png') center/cover no-repeat ;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--dark-bg) 100%);
    opacity: 0.7;
}

.hero-section h1 {
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.age-warning {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.age-warning:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Stylish Game Cards */
.game-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.game-card:hover::before {
    opacity: 0.1;
}

.game-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.game-card:hover .game-img {
    transform: scale(1.1);
}

.game-info {
    padding: 1.8rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
}

.game-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.game-card:hover .game-info h3 {
    color: var(--secondary-color);
}

/* Enhanced Buttons */
.btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 0.8rem 2.5rem;
    font-weight: 500;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Modern Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

/* Enhanced Footer */
.footer {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-1);
}

.footer a {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    transition: all 0.3s ease;
}

.footer a:hover::after {
    width: 100%;
}

.footer-disclaimer {
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--glass-effect);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Cool Animations */
@keyframes titleGlow {
    from {
        text-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 51, 102, 0.8);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Policy Pages Enhancement */
.policy-section {
    background: white;
    position: relative;
}

.policy-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.policy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
}

.policy-content h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
}

.policy-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .game-card {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-collapse {
        background: var(--dark-bg);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-2);
}

/* Glass Morphism Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
} 