:root {
    --goblin-green: #4ade80;
    --booty-bay-brown: #3e2723;
    --gold-accent: #fbbf24;
    --rust-orange: #b45309;
}

body {
    background: linear-gradient(rgba(6, 23, 39, 0.75), rgba(6, 23, 39, 0.75)),
        url('../img/booty-bay.jpg'), #0c151d;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Roboto', sans-serif;
    color: #e2e8f0;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(29, 15, 6, 0.9);
}

::-webkit-scrollbar-thumb {
    background: #5d4037;
    border: 3px solid rgba(29, 15, 6, 0.9);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-accent);
}

.title-font {
    font-family: 'Pirata One', system-ui;
    letter-spacing: 0.05em;
    text-shadow: 4px 4px 0px #000, 0 0 30px rgba(251, 191, 36, 0.5);
}

/* Notice Board Container Styles */
.notice-board {
    background: rgba(35, 20, 10, 0.93);
    border: 4px solid #5d4037;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.9), 0 15px 35px rgba(0, 0, 0, 0.85);
    position: relative;
    backdrop-filter: blur(8px);
}

.notice-board::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

/* Section Planks */
.wood-plank-header {
    background: linear-gradient(90deg, rgba(93, 64, 55, 0.3) 0%, rgba(93, 64, 55, 0.1) 100%);
    border-left: 4px solid var(--gold-accent);
}

/* Goblin Cards */
.goblin-card {
    background: rgba(45, 26, 12, 0.85);
    border: 3px solid #5d4037;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6), 0 10px 25px rgba(0, 0, 0, 0.8);
    position: relative;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(4px);
    width: 100%;
    max-width: 360px;
}

.goblin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.goblin-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-accent);
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.4);
    background: rgba(62, 39, 35, 0.95);
}

.goblin-card:active {
    transform: translateY(1px);
}

/* Rivets */
.rivet {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #795548;
    border-radius: 50%;
    box-shadow: inset -1px -1px 2px #000, 1px 1px 1px rgba(255, 255, 255, 0.05);
}

.rivet-tl {
    top: 10px;
    left: 10px;
}

.rivet-tr {
    top: 10px;
    right: 10px;
}

.rivet-bl {
    bottom: 10px;
    left: 10px;
}

.rivet-br {
    bottom: 10px;
    right: 10px;
}

/* Links & UI Components */
.goblin-link {
    color: var(--gold-accent);
    transition: all 0.2s ease-in-out;
    text-shadow: 0 0 5px rgba(251, 191, 36, 0.2);
    font-weight: 500;
}

.goblin-link:hover {
    color: #ffe082;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    text-decoration: underline;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: -1;
}

.service-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    width: 24px;
    height: 24px;
}

/* Hide scrollbars for slideshow strip */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}