:root {
    --amber: #ffd700;
    --dark-bg: #14141e;
    --card-bg: #2a2a3e;
    --card-border: #3d3d5c;
}

body {
    background-color: #0a0a0a;
    min-height: 100vh;
}

.gazette-shell {
    background: rgba(20, 20, 30, 0.95);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    margin-top: 1rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    min-height: 80vh;
}

.gazette-card {
    background-color: var(--card-bg) !important;
    border: 2px solid var(--card-border);
    border-radius: 12px;
    transition: all 0.25s ease;
    height: 100%;
}

.gazette-card:hover {
    border-color: var(--amber);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.15);
}

.gazette-card .title {
    color: #fff !important;
}

.gazette-card .subtitle {
    color: #b5b5b5 !important;
}

.gazette-footer {
    padding: 4rem 1.5rem 2rem;
    background-color: #1a1a1a;
    border-top: 4px solid #333;
    margin-top: 4rem;
}

.gazette-footer-list {
    list-style: none;
    margin-left: 0;
}

.gazette-footer-list li {
    margin-bottom: 0.5rem;
}

.gazette-footer a {
    color: #b5b5b5;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    padding: 2px 0;
}

.gazette-footer a:hover {
    color: var(--amber);
    padding-left: 5px;
}

.gazette-archive-list {
    list-style: none;
    margin-left: 0 !important;
}

.gazette-archive-list li {
    margin-bottom: 0.75rem;
}

.gazette-archive-list a {
    display: block;
    padding: 0.75rem;
    border-radius: 6px;
    background-color: rgba(255,255,255,0.05);
    transition: all 0.2s;
}

.gazette-archive-list a:hover {
    background-color: rgba(255,215,0,0.1);
    transform: translateX(5px);
}

.hover-warning:hover {
    color: var(--amber) !important;
}

/* Share Modal Styles */
.modal-card {
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.modal-card-head {
    background-color: #209cee; /* Bulma Link Blue */
    border-bottom: none;
}

.modal-card-title {
    color: white;
    font-weight: bold;
}

.modal-card-body {
    background-color: #fff;
    color: #363636;
}

.modal-card-foot {
    background-color: #f5f5f5;
    border-top: 1px solid #dbdbdb;
    justify-content: flex-end;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
