.board-breadcrumb{
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    margin-bottom:18px;
    background:rgba(0,0,0,0.25);
    border:1px solid rgba(255,180,80,0.15);
    border-radius:4px;
    color:#cdb78f;
    font-size:14px;
}
.board-breadcrumb a{
    color:#ffd27a;
    text-decoration:none;
    font-weight:600;
}
.board-breadcrumb a:hover{
    color:#fff;
    text-shadow:0 0 6px rgba(255,200,120,0.6);
}
.board-breadcrumb-sep{
    color:#8f774a;
    font-size:12px;
}
.board-breadcrumb-current{
    color:#fff3c6;
    font-weight:700;
}

.board-panel{
    max-width:1000px;
    margin:auto;
    padding:20px;
    background:linear-gradient(
        180deg,
        rgba(45,33,20,0.95),
        rgba(35,25,15,0.95)
    );
    border:1px solid rgba(255,180,80,0.25);
    border-radius:6px;
    box-shadow:
        inset 0 0 20px rgba(0,0,0,0.4),
        0 0 25px rgba(0,0,0,0.4);
}

.board-topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.board-pages{
    font-size:13px;
    color:#cdb78f;
}

.board-pages a{
    padding:4px 8px;
    margin-right:4px;
    background:#2a1e12;
    border:1px solid rgba(255,180,80,0.2);
    border-radius:3px;
    color:#ffd27a;
    text-decoration:none;
}

.board-pages a:hover{
    background:#3a2816;
}

.board-btn{
    padding:6px 12px;
    background:linear-gradient(#6a3c00,#2a1400);
    border:1px solid rgba(255,170,80,0.4);
    border-radius:4px;
    color:#ffd27a;
    text-decoration:none;
}

.board-btn:hover{
    background:linear-gradient(#ff9a00,#8b2e00);
    color:#fff;
}

.board-thread{
    display:flex;
    align-items:center;
    border:1px solid rgba(255,180,80,0.15);
    border-radius:5px;
    margin-bottom:8px;
    padding:10px;
    background:#2a1e12;
    transition:background 0.15s ease;
}

.board-thread:nth-child(even){
    background:#24180d;
}

.board-thread:hover{
    background:#3a2816;
    box-shadow:0 0 6px rgba(255,180,80,0.15);
}

.board-thread-title{
    flex:4;
    line-height:1.4;
    color:#e6d2a2;
}

.board-thread-title a{
    font-size:16px;
    color:#ffd27a !important;
    font-weight:600;
    text-decoration:none;
}

.board-thread-title a:hover{
    color:#fff !important;
    text-shadow:0 0 6px rgba(255,200,120,0.6);
}

.board-thread-meta{
    width:65px;
    text-align:center;
    color:#e6d2a2;
}

.board-thread-last{
    width:150px;
    font-size:15px;
    color:#b89b6a;
}

.board-mod{
    float:right;
    margin-left:10px;
}

.board-mod a{
    margin-right:5px;
}

/* forum */

.forum-panel{
    max-width:900px;
    margin:auto;
    padding:22px;
    background:linear-gradient(
        180deg,
        rgba(45,33,20,0.95),
        rgba(35,25,15,0.95)
    );
    border:1px solid rgba(255,180,80,0.2);
    border-radius:6px;
    box-shadow:
        inset 0 0 20px rgba(0,0,0,0.4),
        0 0 25px rgba(0,0,0,0.4);
}

.forum-title{
    text-align:center;
    font-size:20px;
    margin-bottom:18px;
    color:#e8c078;
    font-family:'Cinzel', serif;
}

.forum-field{
    margin-top:14px;
}

.forum-field label{
    display:block;
    margin-bottom:4px;
    color:#cdb78f;
    font-size:14px;
}

.forum-panel input[type="text"],
.forum-panel textarea,
.forum-panel select{
    width:100%;
    padding:8px 10px;
    background:#1b140d;
    border:1px solid rgba(255,180,80,0.35);
    border-radius:4px;
    color:#e6d2a2;
    box-sizing:border-box;
}

.forum-panel textarea{
    resize:vertical;
}

.forum-panel input:focus,
.forum-panel textarea:focus,
.forum-panel select:focus{
    outline:none;
    border-color:#ffb450;
    box-shadow:0 0 6px rgba(255,180,80,0.5);
}

.forum-help{
    font-size:12px;
    color:#b89b6a;
    margin-top:6px;
}

.forum-options{
    margin-top:12px;
}

.forum-options label{
    display:block;
    margin-bottom:5px;
    color:#e6d2a2;
}

.forum-submit{
    text-align:center;
    margin-top:18px;
}

.forum-panel input[type="submit"]{
    padding:7px 16px;
    background:linear-gradient(#6a3c00,#2a1400);
    border:1px solid rgba(255,170,80,0.4);
    border-radius:5px;
    color:#ffd27a;
    cursor:pointer;
}

.forum-panel input[type="submit"]:hover{
    background:linear-gradient(#ff9a00,#8b2e00);
    color:#fff;
}

/* thread */

.thread-panel{
    max-width:1000px;
    margin:auto;
    padding:20px;
    background:linear-gradient(
        180deg,
        rgba(45,33,20,0.95),
        rgba(35,25,15,0.95)
    );
    border:1px solid rgba(255,180,80,0.25);
    border-radius:6px;
    box-shadow:
        inset 0 0 20px rgba(0,0,0,0.4),
        0 0 25px rgba(0,0,0,0.4);
}

.thread-title{
    font-size:22px;
    color:#e8c078;
    text-align:center;
    margin-bottom:20px;
}

.thread-post{
    display:flex;
    border:1px solid rgba(255,180,80,0.15);
    border-radius:5px;
    margin-bottom:15px;
    background:#2a1e12;
}

.thread-author{
    width:200px;
    padding:12px;
    border-right:1px solid rgba(255,180,80,0.15);
    color:#e6d2a2;
    font-size:13px;
}

.thread-author a{
    color:#ffcc66;
    font-weight:700;
}

.thread-content{
    flex:1;
    padding:15px;
    color:#e6d2a2;
    word-break:break-word;
}

.thread-post-header{
    font-size:12px;
    color:#b89b6a;
    margin-bottom:8px;
}

.thread-actions{
    margin-top:10px;
}

.thread-actions a{
    margin-right:10px;
    font-size:13px;
    color:#ffd27a;
    text-decoration:none;
}

.thread-actions a:hover{
    color:#fff;
}

.thread-topbar,
.thread-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.thread-pages{
    font-size:13px;
    color:#cdb78f;
}

.thread-pages a{
    padding:4px 8px;
    margin-right:4px;
    background:#2a1e12;
    border:1px solid rgba(255,180,80,0.2);
    border-radius:3px;
    color:#ffd27a;
    text-decoration:none;
}

.thread-pages a:hover{
    background:#3a2816;
}

.thread-btn{
    padding:6px 12px;
    background:linear-gradient(#6a3c00,#2a1400);
    border:1px solid rgba(255,170,80,0.4);
    border-radius:4px;
    color:#ffd27a;
    text-decoration:none;
}

.thread-btn:hover{
    background:linear-gradient(#ff9a00,#8b2e00);
    color:#fff;
}
.forum-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
}

.forum-table th{
    padding:10px;
    text-align:left;
    background:rgba(20,15,10,0.9);
    color:#ffd27a;
    border-bottom:1px solid rgba(255,180,80,0.2);
    font-weight:700;
}

.forum-table td{
    padding:12px;
    color:#e6d2a2;
    border-bottom:1px solid rgba(255,180,80,0.15);
    background:#2a1e12;
    transition:background 0.18s ease;
}

.forum-table tr:nth-child(even) td{
    background:#24180d;
}

.forum-table tr:hover td{
    background:#3a2816;
}

.forum-table td:first-child{
    width:50%;
}

.forum-table td:first-child a{
    font-size:16px;
    color:#ffd27a;
    font-weight:700;
    text-decoration:none;
}

.forum-table td:first-child a:hover{
    color:#fff;
    text-shadow:0 0 6px rgba(255,200,120,0.6);
}

.forum-description{
    margin-top:4px;
    font-size:12px;
    color:#b89b6a;
}

.forum-table td:nth-child(2),
.forum-table td:nth-child(3){
    width:90px;
    text-align:center;
}

.forum-table td:nth-child(4){
    width:200px;
    font-size:13px;
}
.forum-dropdown{
    position:relative;
    display:inline-block;
}

.forum-dropdown-btn{
    padding:4px 10px;
    font-size:12px;

    background:linear-gradient(#6a3c00,#2a1400);
    border:1px solid rgba(255,170,80,0.4);
    border-radius:4px;

    color:#ffd27a;
    cursor:pointer;
}

.forum-dropdown-btn:hover{
    background:linear-gradient(#ff9a00,#8b2e00);
    color:#fff;
}

.forum-dropdown-menu{
    display:none;
    position:absolute;
    right:0;
    top:24px;

    min-width:140px;

    background:#1b140d;
    border:1px solid rgba(255,180,80,0.3);
    border-radius:4px;

    box-shadow:0 0 10px rgba(0,0,0,0.6);
    z-index:100;
}

.forum-dropdown-menu a{
    display:block;
    padding:6px 10px;
    color:#e6d2a2;
    font-size:13px;
    text-decoration:none;
}

.forum-dropdown-menu a:hover{
    background:#3a2816;
    color:#fff;
}
.forum-dropdown.active .forum-dropdown-menu{
    display:block;
}

.forum-panel h2{
    text-align:center;
    margin-top:0;
    margin-bottom:18px;

    color:#e8c078;
    font-family:'Cinzel', serif;
    font-size:20px;

    text-shadow:0 0 6px rgba(255,200,120,0.35);
}

.forum-panel a,
.thread-panel a,
.board-panel a{
    color:#ffd27a;
    text-decoration:none;
}

.forum-panel a:hover,
.thread-panel a:hover,
.board-panel a:hover{
    color:#fff;
    text-shadow:0 0 6px rgba(255,200,120,0.6);
}

.thread-author a{
    color:#ffcc66;
    font-weight:700;
}

.thread-author a:hover{
    color:#fff;
}
.forum-dropdown-btn{
    padding:4px 10px;
    font-size:12px;

    background:linear-gradient(#6a3c00,#2a1400);
    border:1px solid rgba(255,170,80,0.4);
    border-radius:4px;
    color:#ffd27a;
    cursor:pointer;
    white-space:nowrap;
}