/* public/style.css - For Emporium Landing Page */
/*
body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    margin: 0;
    background: #23213a url('/images/home.png') center center/cover no-repeat;
    color: #23213a;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;

.vertical-lines-bg {
    position: absolute;
    width: 1800px;
    height: 1080px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.vertical-line {
    position: absolute;
    width: 1080px;
    height: 0px;
    border: 30px solid #FAFAFA;
    transform: rotate(90deg);
}

.vertical-line.l1 { left: 60px; top: 0px; }
.vertical-line.l2 { left: 160px; top: 0px; }
.vertical-line.l3 { left: 260px; top: 0px; }
.vertical-line.l4 { left: 360px; top: 0px; }
.vertical-line.l5 { left: 460px; top: 0px; }
.vertical-line.l6 { left: 560px; top: 0px; }
.vertical-line.l7 { left: 660px; top: 0px; }
.vertical-line.l8 { left: 760px; top: 0px; }
.vertical-line.l9 { left: 860px; top: 0px; }
.vertical-line.l10 { left: 960px; top: 0px; }
.vertical-line.l11 { left: 1060px; top: 0px; }
.vertical-line.l12 { left: 1160px; top: 0px; }
.vertical-line.l13 { left: 1260px; top: 0px; }
.vertical-line.l14 { left: 1360px; top: 0px; }
.vertical-line.l15 { left: 1460px; top: 0px; }
.vertical-line.l16 { left: 1560px; top: 0px; }
.vertical-line.l17 { left: 1660px; top: 0px; }
.vertical-line.l18 { left: 1760px; top: 0px; }
.vertical-line.l19 { left: 1860px; top: 0px; }

.entry-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(250,250,250,0.95);
    padding: 48px 32px;
    border-radius: 24px;
    box-shadow: 0 4px 32px 0 #23213a22;
    max-width: 400px;
    margin: 120px auto 0 auto;
    position: relative;
    z-index: 1;
}
.entry-form label {
    font-size: 1.2em;
    margin-bottom: 8px;
    color: #23213a;
    font-weight: 700;
}
.entry-form input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 24px;
    border: 2px solid #6366f1;
    border-radius: 8px;
    font-size: 1em;
    background: #fff;
    color: #23213a;
}
.play-btn {
    background: linear-gradient(90deg, #6366f1 0%, #4f46e5 100%);
    color: #fff;
    font-size: 1.3em;
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 2px 12px #6366f1aa;
    transition: background 0.2s;
}
.play-btn:hover {
    background: linear-gradient(90deg, #4f46e5 0%, #6366f1 100%);
}
} */



/* INDEX.HTML */
body {
    margin: 0;    
    /* Base colors (easy to change!) */
    --bg-color: #1D002B;      /* background color */
    --grid-color: #2C0D4C;    /* grid line color */
    /* Grid size */
    --grid-size: 20px;
    background-color: var(--bg-color);
    /* Create repeating grid lines */
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
        background-size: var(--grid-size) var(--grid-size);
    font-family: "Bungee", sans-serif;
}

header {
    width: auto;
    height: 60px;
    padding: 0 20px;
    background-color: #A609F0;
}

header div {
    height: 60px;
    margin: 0;
    display: flex;
    align-items: center;
}

header h2 {
    margin: 0;
    font-size: 2em;
    font-family: "Bungee", sans-serif;
    letter-spacing: 2px;
    color: #FFF7D6;
}

header input {
    background-color: #650094;
    color: white;
    font-family: "Dosis", sans-serif;
    font-weight: 700;
}

header input::placeholder {
  color: #ececec; /* your custom color */
  opacity: .5; /* optional: makes sure it's not semi-transparent */
}

#header-search i{
    font-size: 21px;
    color: #FFF7D6;
}

#header-help {
    height: 40px;
    background-color: #52C5FF;
    font-family: bungee;
    font-size: 25px;
    margin: 0 5px;
    padding: 0px 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;    
}

#header-favorites {
    height: 40px;
    display: flex;
    align-items: center;
    background-color: #FF208B;
    margin: 0 5px;
    padding: 0 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

#header-favorites i {
    font-size: 25px;
    color: #FFF7D6;
}

#header-login {
    height: 40px;
    background-color: #BDF522;
    font-family: bungee;
    font-size: 16px;
    padding: 0 20px;
    margin-left: 5px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex-grow: 1;
}



#game-selection h2 {
    text-align: center;
    color: #23213a;
    margin-bottom: 30px;
    font-size: 2.2em;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}


.game-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 2.5rem;
}


.game-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 #6366f122;
    border: 3px solid #23213a;
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    min-width: 260px;
    max-width: 340px;
    text-align: center;
    position: relative;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 #6366f144;
    border-color: #d0ff1c;
}


.game-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px auto;
    object-fit: contain;
    border-radius: 16px;
    background: #d0ff1c;
    box-shadow: 0 2px 8px #e11d4888;
}


.game-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #e11d48;
    font-size: 1.7em;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 1px 2px 0 #fff, 2px 3px 0 #23213a22;
}


.game-card p {
    font-size: 1.05em;
    color: #23213a;
    flex-grow: 1;
    margin-bottom: 20px;
    font-family: 'Montserrat', 'Arial', sans-serif;
}


.play-button {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.7em 2em;
    background: linear-gradient(90deg, #e11d48 0%, #d0ff1c 100%);
    color: #23213a;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 2px 8px #e11d4888;
    transition: background 0.18s, box-shadow 0.18s;
}

.play-button:hover {
    background: linear-gradient(90deg, #d0ff1c 0%, #e11d48 100%);
    box-shadow: 0 4px 16px #e11d48cc;
    color: #23213a;
}


footer {
    text-align: center;
    padding: 24px 10px;
    background: #23213a;
    color: #fff;
    margin-top: 3rem;
    font-size: 1.1em;
    border-top: 4px solid #d0ff1c;
    letter-spacing: 1px;
    font-family: 'Montserrat', 'Arial', sans-serif;
    opacity: 0.95;
}

.main-menu-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    max-width: 600px;
    margin-left: 80px;
    position: relative;
    z-index: 1;
}
.main-logo {
    width: 420px;
    max-width: 90vw;
    margin-bottom: 32px;
    margin-top: 32px;
    display: block;
}
.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin-bottom: 32px;
}
.menu-btn {
    font-family: 'Press Start 2P', 'Montserrat', sans-serif;
    font-size: 2em;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 16px 0 #23213a33;
    padding: 24px 0;
    width: 100%;
    cursor: pointer;
    letter-spacing: 2px;
    position: relative;
    transition: transform 0.1s;
}
.menu-btn:active {
    transform: scale(0.98);
}
.game-night {
    background: #FF9800;
    color: #23213a;
}
.quickplay {
    background: #A020F0;
    color: #fff;
}
.settings {
    background: #D0FF1C;
    color: #23213a;
}
.quit-btn {
    font-family: 'Press Start 2P', 'Montserrat', sans-serif;
    font-size: 2em;
    color: #23213a;
    margin-top: 16px;
    margin-left: 12px;
    cursor: pointer;
    text-shadow: 0 2px 8px #fffbe6;
}

.popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.popup-content {
    background: #fff;
    padding: 32px 48px;
    border-radius: 16px;
    box-shadow: 0 4px 24px #23213a33;
    text-align: center;
    font-size: 1.3em;
    color: #23213a;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.close-btn {
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1em;
    cursor: pointer;
    font-weight: bold;
    margin: 0 auto;
}
.close-btn:hover {
    background: #4f46e5;
}