/* EskraLabs.Art - Tech/Cyber Gaming Theme CSS */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties - Tech/Cyber Color Scheme */
:root {
    --primary-color: #00D9FF;      /* Cyan Blue */
    --secondary-color: #FF0080;    /* Neon Pink */
    --accent-color: #00FF88;       /* Electric Green */
    --accent-secondary: #FFB800;   /* Neon Orange */
    --dark-bg: #0A0A0F;           /* Deep Dark */
    --dark-secondary: #1A1A2E;     /* Dark Purple */
    --text-light: #FFFFFF;
    --text-secondary: #B8B8D4;
    --card-bg: #16213E;
    --border-color: #2A3A5C;
    --gradient-primary: linear-gradient(135deg, #00D9FF 0%, #FF0080 100%);
    --gradient-secondary: linear-gradient(135deg, #00FF88 0%, #FFB800 100%);
    --gradient-dark: linear-gradient(135deg, #0A0A0F 0%, #1A1A2E 100%);
    --neon-glow: 0 0 20px rgba(0, 217, 255, 0.5);
    --pink-glow: 0 0 20px rgba(255, 0, 128, 0.5);
    --green-glow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tech Navigation Styles */
.navbar {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: var(--neon-glow);
}

.logo-icon {
    font-size: 2rem;
    animation: techPulse 2s infinite alternate;
}

@keyframes techPulse {
    0% { text-shadow: 0 0 5px var(--primary-color); }
    100% { text-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: var(--neon-glow);
}

/* Tech Hero Section */
.hero {
    background: var(--gradient-dark);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tech Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.cta-button.secondary {
    background: var(--gradient-secondary);
}

.cta-button.secondary:hover {
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

/* Tech Gaming Cards */
.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.game-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--neon-glow);
}

.game-card * {
    position: relative;
    z-index: 2;
}

.game-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.game-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.game-iframe {
    width: 100%;
    height: 400px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.game-card:hover .game-iframe {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

/* Tech Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--dark-secondary);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--green-glow);
}

.feature-card * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: var(--green-glow);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Tech Section Styles */
.section {
    padding: 6rem 0;
}

.about-section {
    background: var(--gradient-dark);
}

.reviews-section {
    background: var(--dark-secondary);
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tech Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: var(--pink-glow);
}

.review-stars {
    color: var(--accent-secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Orbitron', monospace;
}

/* Tech Footer */
.footer {
    background: var(--dark-bg);
    border-top: 2px solid var(--primary-color);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    text-shadow: var(--neon-glow);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
    transform: translateX(5px);
}

.disclaimer-card {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--neon-glow);
}

.disclaimer-card h3 {
    color: var(--text-light) !important;
    text-shadow: none !important;
    margin-bottom: 1rem;
}

.disclaimer-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Tech Forms */
.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Orbitron', monospace;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--neon-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-verification-content {
    background: var(--gradient-dark);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--neon-glow);
    position: relative;
}

.age-verification-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
}

.age-verification-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.age-verify-btn {
    padding: 1rem 2rem;
    border: 2px solid;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.age-verify-yes {
    background: var(--gradient-secondary);
    border-color: var(--accent-color);
    color: var(--text-light);
}

.age-verify-yes:hover {
    transform: translateY(-2px);
    box-shadow: var(--green-glow);
}

.age-verify-no {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.age-verify-no:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    box-shadow: var(--pink-glow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        z-index: 1100; /* ensure toggle is above the menu */
    }

    /* Mobile menu becomes a full-width panel anchored below the navbar */
    .nav-menu {
        position: fixed;
        /* anchor menu directly under the navbar (64px default) */
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;
        /* max-height: calc(100% - 64px); */
        /* overflow-y: auto; */
        background: var(--dark-bg);
        flex-direction: column;
        padding: 1.25rem 1.5rem;
        transform: translateY(-20px) scaleY(0.98);
        opacity: 0;
        transition: transform 0.28s ease, opacity 0.28s ease;
        border-top: 2px solid var(--primary-color);
        z-index: 1050; /* sit above page content but below toggle */
        box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    }

    .nav-menu.active {
        transform: translateY(0) scaleY(1);
        opacity: 1;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .age-verification-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-verification-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .games-grid {
        gap: 1.5rem;
    }
    
    .game-card {
        padding: 1.5rem;
    }
    
    .game-iframe {
        height: 300px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Tech Loading Animation */
@keyframes neonPulse {
    0%, 100% { 
        box-shadow: 0 0 5px var(--primary-color);
        text-shadow: 0 0 5px var(--primary-color);
    }
    50% { 
        box-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
        text-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
    }
}

.tech-glow {
    animation: neonPulse 2s infinite ease-in-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}