﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-color: mintcream; /* fallback */
    color: #333;
}
.background-blur {
    background-image: url('../img/bg.jpg');
    background-size: cover;
    filter: blur(4px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
#page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header#site-header {
    background-color: rgba(255, 255, 255, 0.85);
    background: url('/img/Hbg.jpg') no-repeat center center fixed;
    padding: 20px;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;
    flex-direction: column; /* Stack logo and text vertically */
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
    text-align: center;
}
.bigger-sri {
    font-size: 200%; /* 50% bigger than parent size */
    display: inline-block;
    line-height: 1; /* keeps vertical alignment neat */
}

/* Bigger logo */
.logo {
    height: 250px; /* doubled from ~50px */
    margin-bottom: 15px;
}

/* Funky gradient text with dark border */
header#site-header h1 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 36px;
    background: linear-gradient(45deg, #ff6600, #ffcc00, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #222;
    text-stroke: 2px #222;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    margin: 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 250px;
    margin-right: 15px;
}

#layout-container {
    flex: 1;
    display: flex;
    padding: 20px;
}


/* Sidebar Styles */
/* Sidebar */
#sidebar {
    width: 250px;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 15px;
    border-radius: 8px;
    margin-right: 20px;
}

    #sidebar h2 {
        font-size: 18px;
        margin-bottom: 15px;
        color: #003366;
        text-align: center;
    }

/* Game card style */
.game-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
    text-align: center;
    padding: 10px;
    margin-bottom: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .game-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 6px;
        margin-bottom: 8px;
    }

    .game-card h3 {
        font-size: 16px;
        margin: 5px 0;
        color: #003366;
    }

    .game-card p {
        font-size: 14px;
        color: #555;
    }

    /* Hover effect */
    .game-card:hover {
        transform: translateY(-3px);
        box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    }

/* Main Content Area */
main#content {
    flex: 1;
    padding: 20px;
    background-color: rgba(255,255,255,0.85);
    border-radius: 8px;
}

/* Footer */
footer#site-footer {
    background-color: rgba(0, 51, 102, 0.9);
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    width:inherit;
}
