MediaWiki:Common.css: Difference between revisions

MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Line 1: Line 1:
/* ===================================================
/* ===================================================
   HymnRO Wiki - Cathedral Theme (Legacy Vector)
   HymnRO Wiki - Cathedral Theme (Vector 2022)
   =================================================== */
   =================================================== */
/* === GLOBAL BACKGROUND === */
body {
    background: url('/wiki/images/b/b5/Banner.jpg') no-repeat center top fixed;
    background-size: cover;
}
/* Regular pages use different background */
body:not(.page-Main_Page) {
    background: linear-gradient(to bottom, rgba(20, 30, 50, 0.95), rgba(10, 15, 30, 0.98)),
                url('/wiki/images/1/1f/Background.jpg') no-repeat center center fixed;
    background-size: cover;
}


/* === COLOR VARIABLES === */
/* === COLOR VARIABLES === */
Line 21: Line 8:
     --gold-dark: #C9A46D;
     --gold-dark: #C9A46D;
     --gold-light: #F5DFC5;
     --gold-light: #F5DFC5;
     --dark-bg: rgba(20, 28, 46, 0.85);
     --dark-bg: rgba(20, 28, 46, 0.9);
    --darker-bg: rgba(10, 15, 30, 0.95);
}
}


/* === MAIN CONTENT AREA === */
/* === BACKGROUND === */
#content {
body {
     background: rgba(20, 28, 46, 0.7) !important;
     background: url('/wiki/images/b/b5/Banner.jpg') no-repeat center top fixed !important;
    backdrop-filter: blur(10px);
     background-size: cover !important;
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 196, 155, 0.2) !important;
     border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto !important;
    max-width: 850px;
    float: none !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
}


#bodyContent {
body:not(.page-Main_Page) {
     background: transparent !important;
     background: linear-gradient(to bottom, rgba(20, 30, 50, 0.95), rgba(10, 15, 30, 0.98)),
                url('/wiki/images/1/1f/Background.jpg') no-repeat center center fixed !important;
    background-size: cover !important;
}
}


/* === LEFT SIDEBAR (Navigation) === */
/* === MAIN CONTENT === */
#mw-panel {
.mw-body {
     background: rgba(20, 28, 46, 0.7) !important;
     background: rgba(20, 28, 46, 0.75) !important;
     backdrop-filter: blur(10px);
     backdrop-filter: blur(8px);
     -webkit-backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(8px);
     padding: 15px 10px;
     border: 1px solid rgba(232, 196, 155, 0.2);
     border-radius: 8px;
     border-radius: 8px;
     border: 1px solid rgba(232, 196, 155, 0.2);
     padding: 20px !important;
    position: fixed;
    left: 20px;
    top: 80px;
    width: 140px;
}
 
#mw-panel .portal {
    background: transparent !important;
    margin: 0 0 15px 0;
}
 
#mw-panel .portal h3 {
    color: var(--gold) !important;
    font-weight: 600;
    border-bottom: 1px solid rgba(232, 196, 155, 0.3);
    padding-bottom: 5px;
    margin-bottom: 10px;
}
 
#mw-panel .portal .body {
    background: transparent !important;
}
 
#mw-panel .portal .body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
 
#mw-panel .portal .body li {
    margin: 5px 0;
}
}


#mw-panel .portal .body a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
}
#mw-panel .portal .body a:hover {
    color: var(--gold) !important;
}
/* === TOP HEADER BAR === */
#mw-head-base {
    background: rgba(15, 20, 35, 0.95) !important;
    border-bottom: 1px solid rgba(232, 196, 155, 0.2);
}
#mw-head {
    background: rgba(15, 20, 35, 0.95) !important;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(232, 196, 155, 0.2);
    padding: 0 20px;
}
/* Add padding to body so content doesn't hide under fixed header */
body {
    padding-top: 50px;
}
/* Logo area */
#p-logo {
    background: transparent !important;
}
#p-logo a {
    background-image: none !important;
}
/* Hide the "Set $wgLogos" text */
.mw-wiki-logo {
    background-image: none !important;
    font-size: 0 !important;
}
/* Navigation tabs (Read, Edit, View history) */
#left-navigation,
#right-navigation {
    background: transparent;
}
.vectorTabs {
    background: transparent !important;
}
.vectorTabs ul {
    background: transparent !important;
}
.vectorTabs li {
    background: transparent !important;
}
.vectorTabs li a {
    color: rgba(255, 255, 255, 0.8) !important;
    background: transparent !important;
}
.vectorTabs li a:hover {
    color: var(--gold) !important;
}
.vectorTabs li.selected a {
    color: var(--gold) !important;
    background: rgba(232, 196, 155, 0.1) !important;
}
/* More dropdown */
.vectorMenu h3 {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.8) !important;
}
.vectorMenu .menu {
    background: rgba(20, 28, 46, 0.95) !important;
    border: 1px solid rgba(232, 196, 155, 0.2) !important;
}
.vectorMenu .menu li a {
    color: rgba(255, 255, 255, 0.8) !important;
}
.vectorMenu .menu li a:hover {
    background: rgba(232, 196, 155, 0.1) !important;
    color: var(--gold) !important;
}
/* Search box */
#simpleSearch {
    background: rgba(20, 28, 46, 0.8) !important;
    border: 1px solid rgba(232, 196, 155, 0.3) !important;
    border-radius: 4px;
}
#simpleSearch input {
    color: white !important;
    background: transparent !important;
}
#simpleSearch input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
#simpleSearch #searchButton {
    background: transparent !important;
}
/* Personal tools (login, etc) */
#p-personal {
    background: transparent;
}
#p-personal ul li {
    background: transparent;
}
#p-personal ul li a {
    color: rgba(255, 255, 255, 0.8) !important;
}
#p-personal ul li a:hover {
    color: var(--gold) !important;
}
/* === PAGE TITLE === */
#firstHeading {
#firstHeading {
     color: var(--gold);
     color: var(--gold);
     border-bottom: 2px solid rgba(232, 196, 155, 0.3);
     border-bottom: 2px solid rgba(232, 196, 155, 0.3);
    padding-bottom: 10px;
}
}


/* Hide title on main page */
body.page-Main_Page #firstHeading {
body.page-Main_Page #firstHeading {
     display: none;
     display: none;
}
}


/* === HEADINGS === */
#bodyContent {
#bodyContent h2,
     color: rgba(255, 255, 255, 0.9);
#bodyContent h3,
#bodyContent h4 {
     color: var(--gold);
    border-bottom: 1px solid rgba(232, 196, 155, 0.2);
}
}


.mw-headline {
/* === HIDE TOC ON MAIN PAGE === */
     color: var(--gold);
body.page-Main_Page .vector-toc,
body.page-Main_Page #toc,
body.page-Main_Page .toc {
     display: none !important;
}
}


/* === LINKS === */
/* === LINKS === */
#content a:not(.new) {
.mw-body a:not(.new) {
     color: var(--gold);
     color: var(--gold);
    text-decoration: none;
}
}


#content a:not(.new):hover {
.mw-body a:not(.new):hover {
     color: var(--gold-light);
     color: var(--gold-light);
    text-decoration: underline;
}
}


#content a.new {
.mw-body a.new {
     color: #e07a7a;
     color: #e07a7a;
}
}


/* External links */
/* === HEADINGS === */
#content a.external {
.mw-body h2, .mw-body h3, .mw-body h4 {
     color: var(--gold);
     color: var(--gold);
}
}


/* === TABLE OF CONTENTS === */
/* === MAIN PAGE ELEMENTS === */
#toc,
.toc {
    background: rgba(20, 28, 46, 0.8) !important;
    border: 1px solid rgba(232, 196, 155, 0.2) !important;
    padding: 15px;
    border-radius: 8px;
}
 
#toc h2,
.toc h2 {
    color: var(--gold);
}
 
#toc ul a,
.toc ul a {
    color: rgba(255, 255, 255, 0.8);
}
 
#toc ul a:hover,
.toc ul a:hover {
    color: var(--gold);
}
 
/* Hide TOC on main page */
body.page-Main_Page #toc,
body.page-Main_Page .toc {
    display: none !important;
}
 
/* === TABLES === */
.wikitable {
    background: rgba(20, 28, 46, 0.8) !important;
    border: 1px solid rgba(232, 196, 155, 0.2) !important;
    color: rgba(255, 255, 255, 0.9);
}
 
.wikitable th {
    background: rgba(232, 196, 155, 0.15) !important;
    color: var(--gold) !important;
    border: 1px solid rgba(232, 196, 155, 0.2) !important;
}
 
.wikitable td {
    border: 1px solid rgba(232, 196, 155, 0.1) !important;
    background: transparent !important;
}


.wikitable tr:hover td {
    background: rgba(232, 196, 155, 0.05) !important;
}
/* === FOOTER === */
#footer {
    background: rgba(15, 20, 35, 0.9) !important;
    border-top: 1px solid rgba(232, 196, 155, 0.2);
    color: rgba(255, 255, 255, 0.6);
    max-width: 850px;
    margin: 20px auto;
    border-radius: 8px;
    padding: 15px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
#footer a {
    color: var(--gold) !important;
}
/* === MAIN PAGE CUSTOM ELEMENTS === */
/* Hero Section */
.hymnro-hero {
.hymnro-hero {
     text-align: center;
     text-align: center;
     padding: 20px 15px;
     padding: 30px 20px 20px;
    margin-bottom: 15px;
}
}


.hymnro-hero img {
.hymnro-hero img {
     max-width: 300px;
     max-width: 320px;
     width: 100%;
     width: 100%;
    height: auto;
     filter: drop-shadow(0 0 25px rgba(232, 196, 155, 0.5));
     filter: drop-shadow(0 0 30px rgba(232, 196, 155, 0.5));
}
}


.hymnro-tagline {
.hymnro-tagline {
     font-size: 1.3em;
     font-size: 1.2em;
     color: rgba(255, 255, 255, 0.9);
     color: rgba(255, 255, 255, 0.9);
     margin-top: 15px;
     margin-top: 10px;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
     text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
     font-style: italic;
     font-style: italic;
}
}


/* Quick Links */
.hymnro-quick-links {
.hymnro-quick-links {
     display: flex;
     display: flex;
     justify-content: center;
     justify-content: center;
     gap: 15px;
     gap: 12px;
     flex-wrap: wrap;
     flex-wrap: wrap;
     margin: 20px auto 30px;
     margin: 15px auto 25px;
}
}


Line 372: Line 104:
     background: linear-gradient(135deg, var(--gold), var(--gold-dark));
     background: linear-gradient(135deg, var(--gold), var(--gold-dark));
     color: #1a1a2e !important;
     color: #1a1a2e !important;
     padding: 10px 25px;
     padding: 10px 22px;
     border-radius: 25px;
     border-radius: 20px;
     font-weight: 600;
     font-weight: 600;
     text-decoration: none !important;
     text-decoration: none !important;
     transition: all 0.3s ease;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(232, 196, 155, 0.3);
     box-shadow: 0 3px 12px rgba(232, 196, 155, 0.3);
}
}


.hymnro-btn:hover {
.hymnro-btn:hover {
     transform: translateY(-2px);
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(232, 196, 155, 0.5);
     box-shadow: 0 5px 18px rgba(232, 196, 155, 0.5);
    filter: brightness(1.1);
}
}


Line 390: Line 121:
}
}


/* Section Title */
.hymnro-section-title {
.hymnro-section-title {
     color: var(--gold);
     color: var(--gold);
     font-size: 1.4em;
     font-size: 1.3em;
     text-align: center;
     text-align: center;
     margin-bottom: 20px;
     margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
}


Line 402: Line 131:
     content: '';
     content: '';
     display: block;
     display: block;
     width: 80px;
     width: 60px;
     height: 2px;
     height: 2px;
     background: linear-gradient(90deg, transparent, var(--gold), transparent);
     background: linear-gradient(90deg, transparent, var(--gold), transparent);
     margin: 8px auto 0;
     margin: 6px auto 0;
}
}


/* Navigation Grid */
.hymnro-nav-grid {
.hymnro-nav-grid {
     display: grid;
     display: grid;
Line 414: Line 142:
     gap: 12px;
     gap: 12px;
     margin-bottom: 25px;
     margin-bottom: 25px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
}


/* Navigation Cards */
.hymnro-card {
.hymnro-card {
     background: rgba(20, 28, 46, 0.8);
     background: rgba(20, 28, 46, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
     border: 1px solid rgba(232, 196, 155, 0.25);
     border: 1px solid rgba(232, 196, 155, 0.25);
     border-radius: 10px;
     border-radius: 10px;
     padding: 15px 12px;
     padding: 18px 12px;
     text-align: center;
     text-align: center;
     transition: all 0.3s ease;
     transition: all 0.3s ease;
Line 433: Line 155:


.hymnro-card:hover {
.hymnro-card:hover {
     transform: translateY(-5px);
     transform: translateY(-4px);
     border-color: var(--gold);
     border-color: var(--gold);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
                0 0 20px rgba(232, 196, 155, 0.2);
    background: rgba(30, 40, 60, 0.9);
}
}


.hymnro-card-title {
.hymnro-card-title {
     font-size: 1.2em;
     font-size: 1.1em;
     color: var(--gold) !important;
     color: var(--gold) !important;
     font-weight: 600;
     font-weight: 600;
     margin-bottom: 6px;
     margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
}


.hymnro-card-desc {
.hymnro-card-desc {
     font-size: 0.85em;
     font-size: 0.8em;
     color: rgba(255, 255, 255, 0.7);
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.3;
     line-height: 1.3;
}
}


/* Info Section - Two columns */
.hymnro-info-section {
.hymnro-info-section {
     display: flex;
     display: flex;
     gap: 15px;
     gap: 15px;
    max-width: 750px;
     margin: 20px 0;
     margin: 25px auto;
    justify-content: center;
}
}


.hymnro-info-section .hymnro-info-box {
.hymnro-info-section .hymnro-info-box {
     flex: 1;
     flex: 1;
    max-width: 350px;
}
}


/* Info Box */
.hymnro-info-box {
.hymnro-info-box {
     background: rgba(20, 28, 46, 0.8);
     background: rgba(20, 28, 46, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
     border: 1px solid rgba(232, 196, 155, 0.25);
     border: 1px solid rgba(232, 196, 155, 0.25);
     border-radius: 12px;
     border-radius: 10px;
     padding: 20px;
     padding: 18px;
    margin-bottom: 20px;
}
}


.hymnro-info-box h3 {
.hymnro-info-box h3 {
     color: var(--gold);
     color: var(--gold);
     margin: 0 0 15px 0;
     margin: 0 0 12px 0;
     font-size: 1.1em;
     font-size: 1em;
     text-align: center;
     text-align: center;
     border-bottom: 1px solid rgba(232, 196, 155, 0.2);
     border-bottom: 1px solid rgba(232, 196, 155, 0.2);
     padding-bottom: 10px;
     padding-bottom: 8px;
}
}


Line 491: Line 202:
     display: flex;
     display: flex;
     justify-content: space-between;
     justify-content: space-between;
     padding: 6px 0;
     padding: 5px 0;
     border-bottom: 1px solid rgba(232, 196, 155, 0.1);
     border-bottom: 1px solid rgba(232, 196, 155, 0.1);
     font-size: 0.9em;
     font-size: 0.85em;
}
}


Line 509: Line 220:
}
}


/* Footer */
.hymnro-footer {
.hymnro-footer {
     text-align: center;
     text-align: center;
     padding: 20px;
     padding: 15px;
     color: rgba(255, 255, 255, 0.5);
     color: rgba(255, 255, 255, 0.5);
     font-size: 0.9em;
     font-size: 0.85em;
}
 
/* === TABLES === */
.wikitable {
    background: rgba(20, 28, 46, 0.85) !important;
    border: 1px solid rgba(232, 196, 155, 0.2) !important;
    color: rgba(255, 255, 255, 0.9);
}
 
.wikitable th {
    background: rgba(232, 196, 155, 0.15) !important;
    color: var(--gold) !important;
    border: 1px solid rgba(232, 196, 155, 0.2) !important;
}
 
.wikitable td {
    border: 1px solid rgba(232, 196, 155, 0.1) !important;
}
}


/* === RESPONSIVE === */
/* === RESPONSIVE === */
@media screen and (max-width: 900px) {
@media screen and (max-width: 700px) {
     .hymnro-nav-grid {
     .hymnro-nav-grid {
         grid-template-columns: repeat(2, 1fr);
         grid-template-columns: repeat(2, 1fr);
Line 525: Line 252:
     .hymnro-info-section {
     .hymnro-info-section {
         flex-direction: column;
         flex-direction: column;
        align-items: center;
    }
   
    .hymnro-info-section .hymnro-info-box {
        max-width: 100%;
     }
     }
}
}


@media screen and (max-width: 500px) {
@media screen and (max-width: 450px) {
     .hymnro-nav-grid {
     .hymnro-nav-grid {
         grid-template-columns: 1fr;
         grid-template-columns: 1fr;
     }
     }
   
    .hymnro-quick-links {
        flex-direction: column;
        align-items: center;
    }
}
/* === EDIT PAGE FIXES === */
#editform textarea {
    background: rgba(20, 28, 46, 0.9) !important;
    color: white !important;
    border: 1px solid rgba(232, 196, 155, 0.3) !important;
}
.editOptions {
    background: transparent !important;
}
/* Buttons */
input[type="submit"],
button {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: #1a1a2e !important;
    border: none !important;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}
input[type="submit"]:hover,
button:hover {
    filter: brightness(1.1);
}
/* Category links */
#catlinks {
    background: rgba(20, 28, 46, 0.8) !important;
    border: 1px solid rgba(232, 196, 155, 0.2) !important;
    border-radius: 4px;
    padding: 10px;
}
#catlinks a {
    color: var(--gold) !important;
}
}

Revision as of 05:33, 23 December 2025

/* ===================================================
   HymnRO Wiki - Cathedral Theme (Vector 2022)
   =================================================== */

/* === COLOR VARIABLES === */
:root {
    --gold: #E8C49B;
    --gold-dark: #C9A46D;
    --gold-light: #F5DFC5;
    --dark-bg: rgba(20, 28, 46, 0.9);
}

/* === BACKGROUND === */
body {
    background: url('/wiki/images/b/b5/Banner.jpg') no-repeat center top fixed !important;
    background-size: cover !important;
}

body:not(.page-Main_Page) {
    background: linear-gradient(to bottom, rgba(20, 30, 50, 0.95), rgba(10, 15, 30, 0.98)),
                url('/wiki/images/1/1f/Background.jpg') no-repeat center center fixed !important;
    background-size: cover !important;
}

/* === MAIN CONTENT === */
.mw-body {
    background: rgba(20, 28, 46, 0.75) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(232, 196, 155, 0.2);
    border-radius: 8px;
    padding: 20px !important;
}

#firstHeading {
    color: var(--gold);
    border-bottom: 2px solid rgba(232, 196, 155, 0.3);
}

body.page-Main_Page #firstHeading {
    display: none;
}

#bodyContent {
    color: rgba(255, 255, 255, 0.9);
}

/* === HIDE TOC ON MAIN PAGE === */
body.page-Main_Page .vector-toc,
body.page-Main_Page #toc,
body.page-Main_Page .toc {
    display: none !important;
}

/* === LINKS === */
.mw-body a:not(.new) {
    color: var(--gold);
}

.mw-body a:not(.new):hover {
    color: var(--gold-light);
}

.mw-body a.new {
    color: #e07a7a;
}

/* === HEADINGS === */
.mw-body h2, .mw-body h3, .mw-body h4 {
    color: var(--gold);
}

/* === MAIN PAGE ELEMENTS === */

.hymnro-hero {
    text-align: center;
    padding: 30px 20px 20px;
}

.hymnro-hero img {
    max-width: 320px;
    width: 100%;
    filter: drop-shadow(0 0 25px rgba(232, 196, 155, 0.5));
}

.hymnro-tagline {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    font-style: italic;
}

.hymnro-quick-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 15px auto 25px;
}

.hymnro-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #1a1a2e !important;
    padding: 10px 22px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(232, 196, 155, 0.3);
}

.hymnro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(232, 196, 155, 0.5);
}

.hymnro-quick-links a {
    text-decoration: none !important;
}

.hymnro-section-title {
    color: var(--gold);
    font-size: 1.3em;
    text-align: center;
    margin-bottom: 18px;
}

.hymnro-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 6px auto 0;
}

.hymnro-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.hymnro-card {
    background: rgba(20, 28, 46, 0.85);
    border: 1px solid rgba(232, 196, 155, 0.25);
    border-radius: 10px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hymnro-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hymnro-card-title {
    font-size: 1.1em;
    color: var(--gold) !important;
    font-weight: 600;
    margin-bottom: 5px;
}

.hymnro-card-desc {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.hymnro-info-section {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.hymnro-info-section .hymnro-info-box {
    flex: 1;
}

.hymnro-info-box {
    background: rgba(20, 28, 46, 0.85);
    border: 1px solid rgba(232, 196, 155, 0.25);
    border-radius: 10px;
    padding: 18px;
}

.hymnro-info-box h3 {
    color: var(--gold);
    margin: 0 0 12px 0;
    font-size: 1em;
    text-align: center;
    border-bottom: 1px solid rgba(232, 196, 155, 0.2);
    padding-bottom: 8px;
}

.hymnro-info-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid rgba(232, 196, 155, 0.1);
    font-size: 0.85em;
}

.hymnro-info-item:last-child {
    border-bottom: none;
}

.hymnro-info-label {
    color: rgba(255, 255, 255, 0.7);
}

.hymnro-info-value {
    color: var(--gold);
    font-weight: 600;
}

.hymnro-footer {
    text-align: center;
    padding: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85em;
}

/* === TABLES === */
.wikitable {
    background: rgba(20, 28, 46, 0.85) !important;
    border: 1px solid rgba(232, 196, 155, 0.2) !important;
    color: rgba(255, 255, 255, 0.9);
}

.wikitable th {
    background: rgba(232, 196, 155, 0.15) !important;
    color: var(--gold) !important;
    border: 1px solid rgba(232, 196, 155, 0.2) !important;
}

.wikitable td {
    border: 1px solid rgba(232, 196, 155, 0.1) !important;
}

/* === RESPONSIVE === */
@media screen and (max-width: 700px) {
    .hymnro-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hymnro-info-section {
        flex-direction: column;
    }
}

@media screen and (max-width: 450px) {
    .hymnro-nav-grid {
        grid-template-columns: 1fr;
    }
}