/*
Theme Name: Tales of Ethoria Main Theme
Theme URI: https://talesofethoria.com
Author: Ethoria Dev Team
Description: The official immersive theme for Tales of Ethoria, replacing the standard homepage with the Character Selection interface.
Version: 1.0
*/

/* Base Imports */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

:root {
    /* Updated Colors from STYLE ARC BrandGuide reflecting mockup */
    --color-ebonwood: #0D0D10;
    --color-iron-slate: #1A1A1F;
    --color-shadow-steel: #292A30;
    --color-panel-border-grey: #2a292e;
    --color-dwarven-gold: #A18A59;
    --color-imperial-gold: #E8B03A;
    --color-parchment-white: #E1DBCB;
    --color-stone-grey: #8A8372;
    --color-ebonwood-text: #0D0D10;
    /* Font */
    --font-primary: 'Cinzel', serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    background-color: var(--color-ebonwood);
    color: var(--color-parchment-white);
    overflow: hidden;
}

#char-select-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
    /* Path relative to this stylesheet */
    background-image: url("assets/images/background_char_select_01.jpg"); 
    background-size: cover;
    background-position: center bottom;
    text-align: center;
    position: relative;
    box-sizing: border-box;
}

/* Icon Logo Styling */
#char-select-logo {
    width: 256px;
    margin-top: 50px;
    margin-bottom: 20px;
}
#char-select-logo img {
    max-width: 100%;
    height: auto;
}

/* Text Title Styling */
#char-select-title {
    font-size: 54px;
    color: var(--color-parchment-white);
    letter-spacing: 5px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    margin-top: -5px;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Ad Banner Styling (Placeholder) */
#temp-ad-banner {
    width: 728px;
    height: 90px;
    background-color: rgba(26, 26, 31, 0.8); /* Iron Slate with opacity */
    color: var(--color-imperial-gold);
    border: 1px dashed var(--color-imperial-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 30px;
    font-family: var(--font-primary);
}

/* Character Slots Area Styling */
#char-slot-area {
    display: flex;
    gap: 40px;
    width: 728px;
    justify-content: center;
}

/* Character Slot Styling */
.char-slot {
    width: 216px;
    height: 216px;
    background-color: var(--color-iron-slate);
    border: 1px solid var(--color-panel-border-grey);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

.char-slot:hover {
    background-color: var(--color-shadow-steel);
    border-color: var(--color-imperial-gold);
}

.action-icon {
    font-size: 48px;
    line-height: 1;
    color: var(--color-parchment-white);
}

.action-text {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-parchment-white);
}

/* The UPGRADE Slot Styling */
.upgrade-slot {
    background-color: var(--color-imperial-gold);
    border-color: var(--color-imperial-gold);
}

.upgrade-slot .action-icon,
.upgrade-slot .action-text {
    color: var(--color-ebonwood-text);
}

.upgrade-slot:hover {
    background-color: #FFD68A; /* Lighter gold */
    border-color: #FFD68A;
}
