body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
    color: #222;
    background-image: url('/assets/images/bg_pattern4.png');
    background-repeat: repeat;
    opacity: 0;
    animation: pageFadeIn 0.35s ease forwards;
}

@keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

h1, h2 {
    font-family: 'Press Start 2P', monospace;
    color: #e0a96d;
    text-shadow: 1px 1px 2px #000;
}


.headline {
    font-size: 48px;
    font-weight: bold;
    color: #e0a96d;
    text-align: center;
}

.site-header {
    position: relative;
    background: #D68117;
    color: #fff;
    padding: 30px;
    overflow: hidden;
}

.header-deco {
    position: absolute;
    top: 0;
    height: 100%;
    opacity: 0.9; /* optional */
    pointer-events: none; /* makes them non-clickable */
}

.header-deco.left {
    left: 0;
}

.header-deco.right {
    right: 0;
}

.banner {
    text-align: center;
    margin-bottom: 22px;
}

.banner img {
    max-width: 100%;
    height: auto;
    transform: scale(1.2);
}


.site-header h1 {
    margin: 0;
}

.main-nav {
    text-align: center;
    margin-bottom: 30px;
}

.main-nav a {
    background: #333 url('/assets/images/bd_pattern3.png') repeat;
    color: #e0a96d;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid #aaa;
    text-shadow: 1px 1px 2px #000;
}


.main-nav a:hover {
    background: #333 url('/assets/images/bd_pattern.png') repeat;
    color: #7fbf9a;
    border-radius: 5px;
}


.main-nav a:hover {
    text-decoration: underline;
}

.content {
    padding: 20px;
}

.class-block {
    font-family: 'Noto Color Emoji', 'Segoe UI Emoji', 'Apple Color Emoji', sans-serif;
    background: #2c2c44;       /* dark blue/purple background */
    color: #f0d080;            /* text color */
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #b22222;
}



.site-footer {
    background: #ddd;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.map-top-bar {
    text-align: center;
    margin-bottom: 10px;
}

.map-top-bar a {
    padding: 6px 12px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.worldmap-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.worldmap-container img {
    width: 100%;
    height: auto;
    display: block;
}

#worldmap {
    width: 100%;
    height: auto;
}

.worldmap-overlay {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
}

.map-area {
    position: absolute;
    cursor: pointer;
}

.map-area:hover {
    outline: 2px solid rgba(5, 5, 155, 0.65);
}

#map-popup {
    position: fixed;
    background: rgba(60,10,90,0.85);
    color: #fff;
    padding: 10px;
    border: 2px solid #ffd700;
    border-radius: 6px;
    display: none;
    max-width: 300px;
    z-index: 1000;
    font-size: 14px;
    box-shadow: 0 0 10px #ffdd88;
}

.map-disabled {
    
    cursor: not-allowed;
}

#map-popup ul {
    padding-left: 18px;
    margin: 5px 0 0 0;
}

#map-popup li {
    list-style: none;
}

#map-popup li.boss {
    color: #ff5555;
    font-weight: bold;
}
.map-tabs {
    text-align: center;
    margin-bottom: 10px;
}

.map-tab {
    background: #2a2a2a;
    color: #c9b37e;
    border: 1px solid #555;
    border-radius: 6px;
    font-weight: 600;
    padding: 12px 26px;   /* ⬅ bigger click area */
    font-size: 18px;      /* ⬅ bigger text */
    cursor: pointer;
}

.map-tab.active {
    background: #444;
    border-bottom: 2px solid #c9b37e;
}

.map-sections {
    position: relative;
    overflow: hidden;
}


.map-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    opacity: 0;
    pointer-events: none;

    transform: translateX(40px);
    transition:
        transform 0.25s ease-out,
        opacity 0.12s linear;
}

/* active (visible) tab */
.map-section.active {
    position: relative;
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.change-list {
    list-style: none;
    padding: 0;
}

.change-list li {
    display: grid;
    grid-template-columns: 320px 40px auto;  /* left | arrow | right */
    gap: 15px;
    align-items: center;
    font-family: monospace; /* optional but nice */
}

.change-list .arrow {
    text-align: center;
    font-weight: bold;
}


.panel {
    border: 2px solid #c9b37e;
    border-radius: 12px;
    padding: 20px;
    margin: 0 auto 25px auto;
    max-width: 900px;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
    background: #2c2c44;       /* dark blue/purple background */
    color: #f0d080;            /* text color */
}

.panel h2 {
    font-family: 'Press Start 2P', monospace;
    color: #e0a96d;
    text-shadow: 1px 1px 2px #000;
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
}
/*
.panel h2 {
    margin-top: 0;
    text-align: center;
    font-size: 22px;
}
*/
.panel p {
    line-height: 1.6;
    font-size: 15px;
}

.panel.center {
    text-align: center;
}

.panel.soft {
    background: #2c2c44;       /* dark blue/purple background */
    color: #f0d080;            /* text color */
}

.info-list {
    list-style-type: disc;  /* normal bullets */
    margin-left: 20px;      /* indent bullets */
    padding-left: 0;        /* reset extra padding if needed */
}

.info-list li {
    padding: 6px 0;
    font-size: 15px;
}

.icon {
    height: 36px;
    vertical-align: middle;
    margin-right: 6px;
}

.emoji {
    font-family: 'Segoe UI Emoji', 'Noto Color Emoji', 'Apple Color Emoji', 'Twemoji', sans-serif !important;
}

/* Emoji support for panels, class blocks, headers, lists, and links */
.panel, .class-block,
.panel h2, .panel h3, .panel h4, 
.class-block h2, .class-block h3, .class-block h4,
ul.info-list, li {
    font-family: 'Segoe UI Emoji', 'Noto Color Emoji', 'Apple Color Emoji', 'Twemoji', sans-serif !important;
}

body, body * {
    font-family: 'Segoe UI Emoji', 'Noto Color Emoji', 'Apple Color Emoji', 'Twemoji', sans-serif !important;
}

