[x-cloak] { display: none !important; }

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    /* Darker, more theatrical purple */
    background-color: #0f0c29; 
    background-image: radial-gradient(circle at center, #2d1b4d 0%, #0f0c29 100%);
    color: #fff1f2; 
    -webkit-tap-highlight-color: transparent; 
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header Text - Closer to the Gold/Pink in your reference */
.gradient-text { 
    background: linear-gradient(to bottom, #fde047 20%, #facc15 45%, #ec4899 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

/* Game Cards */
.game-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    /* The "Bezel" color from your reference image */
    border: 3px solid #f9a8d4; 
    background-color: #1e1b4b;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.3);
    border-color: #fde047; /* Turns Gold on hover */
}

/* Animations */
.animate-in { 
    animation: fadeIn 0.8s ease-out forwards; 
    opacity: 0;
}

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(30px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Gold Button */
.btn-gold {
    background: linear-gradient(to bottom, #fde047, #ca8a04);
    color: #450a0a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 2rem;
    border-radius: 99px;
    box-shadow: 0 10px 25px -5px rgba(202, 138, 4, 0.4);
    transition: all 0.3s;
}

.btn-gold:hover {
    box-shadow: 0 15px 30px -5px rgba(202, 138, 4, 0.6);
    transform: translateY(-2px);
}

.btn-gold:active {
    transform: scale(0.95);
}