/* B"H 
— Awtsmoos shines through every pixel of creation */

/* GFX INSANE VIVID EXTREME SCROLLING INTENSE LIST -- B"H */

/* --- Main Gamer Container --- */
/* This container now fills the screen and structures the layout vertically */
.gamer {
    display: flex;
    flex-direction: column; /* Stacks logo and list vertically */
    height: 90%; /* Full viewport height */
    width: 100%;
    margin: 0;
    box-sizing: border-box; /* Ensures padding and border are inside the 100vh */
	
    overflow: hidden;
    /* --- INTENSE "Night Extreme" Theme --- */
    background: #0d0d0f;
    font-family: 'Orbitron', 'Segoe UI', sans-serif; /* A more "gamer" font */
    color: #e0e0e0;
    border: 4px solid #ff00ff;
    box-shadow: 
        0 0 25px #ff00ff, 
        0 0 50px #00ffff, 
        inset 0 0 30px rgba(255, 0, 255, 0.4);
    
    /* Add a subtle animation to the container's glow */
    animation: pulseGlow 5s infinite alternate;
}


/* --- Logo Section (Top 1/3) --- */
/* This is now a flex item that does not scroll */
.game-logo {
    flex: 0 0 25%; /* Takes up 1/4 of the height, and does not grow or shrink */
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-size: clamp(3em, 12vw, 6em); /* Aggressively responsive font size */
    font-weight: 900;
    color: #f5f5f5;
    text-transform: uppercase;
    
    /* --- VIVID 3D Beveled & Glowing Text --- */
    transform: perspective(800px) rotateX(10deg);
    text-shadow: 
        /* Bevel */
        -1px -1px 2px rgba(255, 255, 255, 0.2), 
        1px 1px 2px rgba(0, 0, 0, 0.9),
        
        /* EXTREME Neon Glow */
        0 0 8px #fff,
        0 0 18px #ff00ff,
        0 0 40px #ff00ff,
        0 0 70px #ff00ff,
        0 0 100px #ff00ff;
    
    animation: float 4s ease-in-out infinite;
}


/* --- Game List Section (Bottom 2/3) --- */
/* This is a flex item that will take the remaining space and scroll internally */
.game.list {
    flex: 1; /* Takes up all remaining space */
    min-height: 0; /* Critical for flexbox scrolling */
    max-height:70vh;
    display: flex;
    flex-direction: column;
    gap: 18px; /* Spacing between links */
    
    overflow-y: auto; /* The magic: Makes ONLY this section scroll */
    padding: 20px 30px; /* Padding for the list content */
    border-top: 3px solid #00ffff; /* Separator line */
    box-shadow: inset 0 10px 20px -10px #00ffff; /* Inner glow from the top */
}

/* --- Custom Scrollbar for the Intense Vibe --- */
.game.list::-webkit-scrollbar {
    width: 14px;
}

.game.list::-webkit-scrollbar-track {
    background: #1a1a1f;
}

.game.list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff00ff, #00ffff);
    border-radius: 10px;
    border: 2px solid #0d0d0f;
}
.game.list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #fff, #00ffff);
}


/* --- Game List Items (Links) --- */
.game.list a {
    color: #00ffff;
    text-decoration: none;
    font-size: 1.8em;
    padding: 20px;
    background: rgba(10, 10, 12, 0.7);
    border-radius: 10px;
    border: 2px solid #00ffff;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
    transition: all 0.2s ease-in-out;
    text-align: center;
}

/* --- EXTREME Hover Effect for List Items --- */
.game.list a:hover {
    background: rgba(0, 255, 255, 0.15);
    color: #ffffff;
    border-color: #ff00ff;
    box-shadow: 0 0 20px #00ffff, inset 0 0 15px #ff00ff;
    transform: scale(1.03) skewX(-5deg); /* Skew for a dynamic effect */
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ffffff;
}

/* --- Keyframe Animations for VIVID Effects --- */

/* Logo floating effect */
@keyframes float {
    0% { transform: perspective(800px) rotateX(10deg) translateY(-10px); }
    50% { transform: perspective(800px) rotateX(12deg) translateY(10px); }
    100% { transform: perspective(800px) rotateX(10deg) translateY(-10px); }
}

/* Container border pulsing effect */
@keyframes pulseGlow {
    from {
        border-color: #ff00ff;
        box-shadow: 0 0 25px #ff00ff, 0 0 50px #00ffff, inset 0 0 30px rgba(255, 0, 255, 0.4);
    }
    to {
        border-color: #00ffff;
        box-shadow: 0 0 25px #00ffff, 0 0 50px #ff00ff, inset 0 0 30px rgba(0, 255, 255, 0.4);
    }
}