/* 
   Bad Girl Games - Premium Design System
   Cyber-Dark Aesthetic with Glassmorphism and Neon Accents
*/

:root {
    --bg-dark: #0a0a0b;
    --bg-card: rgba(18, 18, 20, 0.75);
    --accent: #ff007a;
    --accent-glow: rgba(255, 0, 122, 0.4);
    --secondary: #00f2ff;
    --secondary-glow: rgba(0, 242, 255, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #a0a0ab;
    --glass-border: rgba(255, 255, 255, 0.1);
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Static background gradient — no animation overhead */
body {
    background:
        radial-gradient(ellipse at top right, rgba(255, 0, 122, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(0, 242, 255, 0.06) 0%, transparent 60%),
        var(--bg-dark);
}

/* Navigation */
.header {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--accent-glow));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover img {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s, text-shadow 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-title span {
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Button Component */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.primary-btn {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 20px -5px var(--accent-glow);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px var(--accent-glow);
    background: #ff1a8c;
}

.outline-btn {
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.outline-btn:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.disabled {
    opacity: 0.5;
    cursor: default;
}

/* Games Section */
.games-section {
    padding: 100px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
}

.card-image-wrapper {
    position: relative;
    height: 320px;
    width: 100%;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.status-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.status-badge.development {
    background: var(--secondary);
    color: #000;
}

.game-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.game-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.tags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

/* Footer Rendering */
footer {
    padding: 100px 2rem 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 0, 122, 0.05));
    text-align: center;
}

.footer-content h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.email-link {
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 2rem 0;
    transition: color 0.3s;
}

.email-link:hover {
    color: var(--accent);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.socials a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--text-primary);
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 3.5rem; }
    .footer-content h2 { font-size: 2.5rem; }
}
