/* =========================================
   LAYOUT FIXE (APP STYLE)
   ========================================= */

/* On bloque le scroll sur toute la fenêtre */
body, html {
    height: 100%;
    margin: 0;
    overflow: hidden; /* Empêche la page entière de scroller */
}


/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header {
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    position: relative;
    z-index: 2000;
}

.premium-nav-bar {
    background: #0a0a0a;
    border-bottom: 1px solid #222;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2000;
}

.nav-logo-small {
    height: 45px;
    cursor: pointer;
    transition: transform 0.3s;
}
.nav-logo-small:hover { transform: scale(1.05); }

.top-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
}

/* BARRE DE RECHERCHE DANS NAV */
.nav-search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 15px;
    border-left: 1px solid #333;
    padding-left: 15px;
}

.nav-search-container input {
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 8px 35px 8px 15px;
    border-radius: 20px;
    font-size: 11px;
    width: 180px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
}

.nav-search-container input:focus {
    width: 220px;
    border-color: #f1b52c;
    background: #000;
}

.nav-search-container input::placeholder { color: #555; font-style: italic; }
.nav-search-container .search-icon {
    position: absolute; right: 12px; font-size: 12px;
    pointer-events: none; opacity: 0.5;
}

/* FILTER BAR */
.filter-bar {
    background: #287233;
    color: #fff;
    font-size: 10px;
    padding: 6px 40px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    text-transform: uppercase;
}

/* =========================================
   LAYOUT PAGE PRINCIPALE
   ========================================= */
.page-content {
    display: flex;
    padding: 30px 40px;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 80vh;
}

.title-line {
    font-size: 14px;
    color: #f1b52c;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 0;
}

.properties-container { width: 400px; flex-shrink: 0; }
.properties-container.full-width { width: 100%; max-width: 1000px; margin: 0 auto; }
.scroll-list { height: 80vh; overflow-y: auto; padding-right: 10px; }

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
    background: #0a0a0a;
    border-top: 1px solid #222;
    padding: 40px 20px;
    margin-top: 60px;
    text-align: center;
}
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-logo { height: 30px; opacity: 0.3; filter: grayscale(100%); transition: opacity 0.3s; }
.footer-logo:hover { opacity: 0.8; }
.footer-text p { margin: 5px 0; color: #555; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.creator-credit { margin-top: 15px !important; color: #444 !important; }
.taiko-name { color: #f1b52c; font-weight: bold; }