@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #ff0000;
    --primary-dark: #cc0000;
    --primary-glow: rgba(255, 0, 0, 0.5);
    --dark: #0a0a0a;
    --light: #ffffff;
    --text: #e0e0e0;
    --text-muted: #a0a0a0;
    --card-bg: rgba(20, 20, 20, 0.8);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Static Background Image */
    background-image: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=2670&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Dark overlay for background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.85);
    /* Dark overlay */
    z-index: -2;
}

canvas#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin: 0;
    color: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: white;
    text-shadow: 0 0 10px var(--primary-glow);
}

.logo span {
    color: var(--primary);
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    margin-left: 30px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 150px 0 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #a00000 100%);
    color: white;
    padding: 20px 60px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px var(--primary);
}

.password-box {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 12px 35px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.password-text {
    color: var(--primary);
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    margin-left: 10px;
    text-shadow: 0 0 10px var(--primary);
}

/* Features */
.features {
    padding: 100px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: 15px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 0, 0, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-shadow: 0 0 20px var(--primary-glow);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Games Section */
.games-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.3rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
}

/* Updated Game Image for Banners */
.game-img {
    height: 140px;
    /* Adjusted for banners */
    width: 100%;
    padding: 0;
    /* Remove padding */
    background: #000;
    position: relative;
}

.game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the area */
    filter: brightness(0.8);
    transition: var(--transition);
}

.game-card:hover .game-img img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.game-info {
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.game-info h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-undetected {
    background: rgba(0, 255, 127, 0.15);
    color: #00ff7f;
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.status-detected {
    background: rgba(255, 0, 0, 0.15);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.online-users {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.online-dot {
    width: 6px;
    height: 6px;
    background: #00ff7f;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px #00ff7f;
}

/* Reviews */
.reviews {
    padding: 100px 0;
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.review-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #ccc;
    line-height: 1.6;
}

.reviewer {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: #333;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.reviewer-name {
    font-weight: 700;
    color: white;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    margin: 40px 0;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 20px;
    transition: 0.3s;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .btn-primary {
        padding: 15px 40px;
        font-size: 1.2rem;
    }

    /* Mobile grid adjustment if needed */
}