/* Global Styles */
:root {
    --primary-color: #7b2ff7;
    --secondary-color: #f72585;
    --accent-color: #4cc9f0;
    --dark-color: #0a0a0a;
    --darker-color: #050505;
    --section-dark: #0d0d0d;
    --light-color: #f5f6fa;
    --text-color: #e1e1e1;
    --card-bg: #151515;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-hover: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    --card-border: 1px solid rgba(255, 255, 255, 0.05);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --neon-shadow: 0 0 15px rgba(123, 47, 247, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--dark-color);
}

/* Section Backgrounds */
section {
    background-color: var(--dark-color);
}

section:nth-child(even) {
    background-color: var(--section-dark);
}

/* Navbar Styles */
.navbar {
    background: rgba(5, 5, 5, 0.95);
    padding: 1rem 0;
    box-shadow: var(--neon-shadow);
    border-bottom: var(--card-border);
    backdrop-filter: blur(10px);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('../img/back.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background-attachment: fixed;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.85) 50%,
        var(--dark-color) 100%
    );
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(123, 47, 247, 0.5);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

/* About Section */
#about {
    position: relative;
    background-color: var(--dark-color);
    z-index: 1;
}

/* About Cards */
.about-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.about-card:hover::before {
    opacity: 0.05;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-shadow);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.about-card p {
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.about-disclaimer {
    background: rgba(123, 47, 247, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(123, 47, 247, 0.2);
}

/* Games Section */
#games {
    position: relative;
    background-color: var(--section-dark);
    z-index: 1;
}

.games-page {
    background-color: var(--dark-color);
    padding-top: 100px;
    min-height: 100vh;
}

/* Game Cards Enhancements */
.game-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: var(--card-border);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.6s ease;
    transform: rotate(35deg);
    pointer-events: none;
    z-index: 1;
}

.game-card:hover::before {
    opacity: 0.1;
    top: -50%;
    left: -50%;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--neon-shadow);
}

.game-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.6s ease;
}

.game-info {
    background: linear-gradient(to top, var(--card-bg), rgba(21, 21, 21, 0.95));
    position: relative;
    z-index: 2;
}

.game-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Contact Section */
#contact {
    position: relative;
    background-color: var(--dark-color);
    z-index: 1;
}

/* Contact Card Enhancement */
.contact-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    border: var(--card-border);
    text-align: center;
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info {
    margin: 2rem 0;
}

.email-container {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(123, 47, 247, 0.1);
    border-radius: 50px;
    margin: 1rem 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(123, 47, 247, 0.2);
}

.email-container:hover {
    background: rgba(123, 47, 247, 0.2);
    transform: translateY(-3px);
}

.email-link {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.email-icon {
    color: var(--accent-color);
}

.email-text {
    font-size: 1.1rem;
}

.contact-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.contact-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: var(--card-border);
}

/* Buttons */
.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hover);
    opacity: 0;
    transition: all 0.4s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--neon-shadow);
}

/* Footer Enhancement */
.footer {
    background: var(--darker-color);
    color: var(--text-color);
    border-top: var(--card-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
    opacity: 0.2;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Disclaimer Section */
.disclaimer-section {
    position: relative;
    background-color: var(--section-dark) !important;
    z-index: 1;
}

.disclaimer-box {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: var(--card-border);
    box-shadow: var(--card-shadow);
}

/* Remove any potential white backgrounds */
.bg-light {
    background-color: var(--section-dark) !important;
}

.bg-white {
    background-color: var(--card-bg) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .about-card,
    .game-card,
    .contact-card {
        margin-bottom: 2rem;
    }
    
    .navbar-brand img {
        height: 30px;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .email-container {
        padding: 0.8rem 1.5rem;
    }
    
    .email-text {
        font-size: 1rem;
    }
} 

/* Policy Pages */
.policy-section {
    background-color: var(--dark-color);
    min-height: 100vh;
    padding-top: 100px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    border: var(--card-border);
}

.policy-card h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
}

.policy-card h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #fff;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--accent-color);
}

.policy-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-card ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-card ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-card ul li::marker {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .policy-card {
        padding: 2rem;
    }

    .policy-card h1 {
        font-size: 2rem;
    }

    .policy-card h2 {
        font-size: 1.5rem;
    }

    .policy-card h3 {
        font-size: 1.2rem;
    }
} 