
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.7rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
}

.header-home {
    background: linear-gradient(135deg, #2D1B3D 0%, #4A1942 100%);
    color: white;
}

.header-namakam {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: #2D1B3D;
}

.header-chamakam {
    background: linear-gradient(135deg, #008080 0%, #20B2AA 100%);
    color: white;
}

.header-rudra_mantras {
    background: linear-gradient(135deg, #6A0DAD 0%, #9B59B6 100%);
    color: white;
}

.header-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.nav-item {
    position: relative;
    cursor: pointer;
    font-weight: 600;
    padding: 0.5rem 0.7rem;
    font-size: 0.9rem;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -1rem;
    background: transparent;
    min-width: 280px;
    padding-top: 0.5rem;
    z-index: 1001;
}
.nav-dropdown-inner {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
}

.nav-item:hover .nav-dropdown {
    display: block;
}

.dropdown-item {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    color: #333;
    transition: background 0.2s;
}

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

.dropdown-item:hover {
    background: #f5f5f5;
}

.header-namakam .dropdown-item:hover {
    background: #FFF8E7;
}

.header-chamakam .dropdown-item:hover {
    background: #F0F8FF;
}

.header-rudra_mantras .dropdown-item:hover {
    background: rgba(155, 89, 182, 0.15);
}

/* Language Picker */
.script-picker {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    background: rgba(255,255,255,0.15);
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s;
    white-space: nowrap;
}
.script-picker:hover {
    background: rgba(255,255,255,0.25);
}
.script-picker-icon {
    font-size: 1rem;
}
.script-picker-label {
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.script-picker-arrow {
    font-size: 0.6rem;
    opacity: 0.7;
}
.script-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: transparent;
    min-width: 210px;
    padding-top: 0.3rem;
    z-index: 1002;
}
.script-dropdown-inner {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    overflow: hidden;
}
.script-picker:hover .script-dropdown {
    display: block;
}
.script-option {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    color: #333;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Work Sans', sans-serif;
}
.script-option:last-child {
    border-bottom: none;
}
.script-option:hover {
    background: #f5f0ff;
}
.script-option.active {
    background: #f0e6ff;
    font-weight: 600;
}
.script-option .script-sample {
    font-size: 0.85rem;
    opacity: 0.5;
}
.script-option .script-check {
    color: #6A0DAD;
    font-weight: 700;
}

/* Help Icon Button */
.help-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: inherit;
    text-decoration: none;
    transition: background 0.2s;
    flex-shrink: 0;
    margin-left: 0.3rem;
}
.help-icon-btn:hover {
    background: rgba(255,255,255,0.3);
}
.help-icon-btn svg {
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1003;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile overlay menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
.mobile-menu-overlay.active {
    display: block;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #2D1B3D;
    color: white;
    z-index: 1004;
    overflow-y: auto;
    transition: right 0.3s ease;
    padding: 4.5rem 0 2rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
}
.mobile-menu.active {
    display: block;
    right: 0;
}
.mobile-menu-section {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-section-title {
    padding: 0.7rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}
/* Collapsible section titles */
.mobile-menu-section-title.collapsible {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: opacity 0.2s;
}
.mobile-menu-section-title.collapsible:hover {
    opacity: 1;
}
.mobile-menu-section-title.collapsible::after {
    content: '\25B6';
    font-size: 0.55rem;
    transition: transform 0.25s ease;
    opacity: 0.6;
}
.mobile-menu-section-title.collapsible.expanded::after {
    transform: rotate(90deg);
}
.mobile-menu-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-menu-items.expanded {
    max-height: 600px;
}
.mobile-menu-item {
    display: block;
    padding: 0.6rem 1.5rem 0.6rem 2rem;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.mobile-menu-item:hover {
    background: rgba(255,255,255,0.1);
}
.mobile-menu-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0.5rem 0;
}
.mobile-script-options {
    padding: 0.3rem 0;
}
.mobile-script-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1.5rem 0.6rem 2rem;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.mobile-script-option:hover {
    background: rgba(255,255,255,0.1);
}
.mobile-script-option.active {
    background: rgba(255,255,255,0.15);
    font-weight: 600;
}
.mobile-script-option .script-check {
    color: #FFD700;
}

.search-container {
    position: relative;
    width: 200px;
}

.search-bar {
    width: 100%;
    padding: 0.5rem 0.8rem;
    border: none;
    border-radius: 4px;
    background: rgba(255,255,255,0.2);
    color: inherit;
    font-family: 'Work Sans', sans-serif;
}

.header-namakam .search-bar {
    background: rgba(255,255,255,0.3);
    color: #2D1B3D;
}

.header-chamakam .search-bar {
    background: rgba(255,255,255,0.2);
}

.header-rudra_mantras .search-bar {
    background: rgba(255,255,255,0.2);
    color: white;
}

.search-bar::placeholder {
    opacity: 0.7;
}

.search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1001;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
    color: #333;
}

.search-result-item:hover {
    background: #f5f5f5;
}

.search-result-item .match {
    background: #FFD700;
    font-weight: 600;
    padding: 0 2px;
}

@media (max-width: 768px) {
    header {
        padding: 0.6rem 1rem;
    }
    .header-logo {
        font-size: 1.3rem;
    }
    .header-nav {
        display: none !important;
    }
    .script-picker {
        display: flex !important;
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
        gap: 0.3rem;
        margin-left: auto;
        margin-right: 0.5rem;
    }
    .script-picker-label {
        max-width: 60px;
    }
    .script-dropdown {
        right: -10px;
        min-width: 190px;
    }
    .search-container {
        display: none !important;
    }
    .hamburger {
        display: flex !important;
    }
    /* Ensure mobile menu styles apply correctly */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: #2D1B3D !important;
        color: white !important;
        z-index: 1004;
        overflow-y: auto;
        transition: right 0.3s ease;
        padding: 4.5rem 0 2rem;
        box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    }
    .mobile-menu.active {
        display: block !important;
        right: 0 !important;
    }
    .mobile-menu .mobile-menu-section-title {
        color: rgba(255,255,255,0.7) !important;
    }
    .mobile-menu .mobile-menu-item {
        color: white !important;
    }
}

/* Page Sections */
#home {
    display: none;
}

.home-active #home {
    display: block;
}

.anuvaka-page {
    display: none;
}

.home {
    min-height: 100vh;
    background: linear-gradient(135deg, #2D1B3D 0%, #4A1942 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.home h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    margin: 2rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.home-subtitle {
    font-size: 1.2rem;
    margin: 1rem 0 3rem;
    opacity: 0.9;
}

.om-symbol {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 6rem;
    margin: 1rem 0;
    opacity: 0.8;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.home-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.home-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    width: 280px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.home-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #2D1B3D;
    margin-bottom: 1rem;
}

.home-card p {
    color: #666;
    margin-bottom: 1rem;
}

.card-namakam {
    border-top: 4px solid #B8860B;
}

.card-chamakam {
    border-top: 4px solid #008080;
}

.card-rudra_mantras {
    border-top: 4px solid #6A0DAD;
}

/* Anuvaka Pages */
.anuvaka-page {
    min-height: 100vh;
    padding-bottom: 3rem;
}

.anuvaka-page.namakam-active {
    background: #FFF8E7;
}

.anuvaka-page.chamakam-active {
    background: #F0F8FF;
}

.anuvaka-page.rudra_mantras-active {
    background: #F5F0FF;
}

.anuvaka-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid;
}

.anuvaka-page.namakam-active .anuvaka-header {
    border-bottom-color: #B8860B;
}

.anuvaka-page.chamakam-active .anuvaka-header {
    border-bottom-color: #008080;
}

.anuvaka-page.rudra_mantras-active .anuvaka-header {
    border-bottom-color: #6A0DAD;
}

.anuvaka-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.anuvaka-page.namakam-active .anuvaka-number {
    color: #8B0000;
}

.anuvaka-page.chamakam-active .anuvaka-number {
    color: #008080;
}

.anuvaka-page.rudra_mantras-active .anuvaka-number {
    color: #6A0DAD;
}

.anuvaka-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin: 0.5rem 0 1rem;
}

.anuvaka-page.namakam-active .anuvaka-title {
    color: #B8860B;
}

.anuvaka-page.chamakam-active .anuvaka-title {
    color: #20B2AA;
}

.anuvaka-page.rudra_mantras-active .anuvaka-title {
    color: #9B59B6;
}

.anuvaka-illustration {
    margin: 1rem 0;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.anuvaka-illustration svg {
    width: 150px;
    height: 150px;
}

/* Navigation Buttons */
.anuvaka-nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    transition: background 0.3s;
}

.anuvaka-page.namakam-active .nav-btn {
    background: #B8860B;
    color: white;
}

.anuvaka-page.namakam-active .nav-btn:hover {
    background: #DAA520;
}

.anuvaka-page.chamakam-active .nav-btn {
    background: #008080;
    color: white;
}

.anuvaka-page.chamakam-active .nav-btn:hover {
    background: #20B2AA;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Verses */
.verses {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.verse-card {
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.anuvaka-page.namakam-active .verse-card {
    border-left: 4px solid #B8860B;
    background: white;
}

.anuvaka-page.chamakam-active .verse-card {
    border-left: 4px solid #008080;
    background: white;
}

.verse-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.verse-header {
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.verse-header:hover {
    background: rgba(0,0,0,0.02);
}

.verse-sanskrit {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.anuvaka-page.namakam-active .verse-sanskrit {
    color: #8B0000;
}

.anuvaka-page.chamakam-active .verse-sanskrit {
    color: #191970;
}

.verse-tr {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

.verse-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.verse-card.expanded .verse-content {
    max-height: 1000px;
}

.verse-meaning {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.8;
}

.word-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.word-item {
    text-align: center;
}

.word-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.5rem;
}

.word-icon svg {
    width: 100%;
    height: 100%;
}

.word-thumbnail {
    width: 120px;
    height: 120px;
    margin: 0.5rem auto;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: white;
    overflow: hidden;
    position: relative;
}

.word-thumbnail.has-image img:nth-child(2) {
    display: none;
}

.word-thumbnail.has-image {
    border: 3px solid;
    box-shadow: 0 0 12px rgba(218, 165, 32, 0.6);
    border-radius: 8px;
}

.anuvaka-page.namakam-active .word-thumbnail.has-image {
    border-color: #FFD700;
}

.anuvaka-page.chamakam-active .word-thumbnail.has-image {
    border-color: #87CEEB;
}

.word-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    display: block;
}

.word-text {
    font-size: 0.85rem;
}

.word-sanskrit {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.anuvaka-page.namakam-active .word-sanskrit {
    color: #8B0000;
}

.anuvaka-page.chamakam-active .word-sanskrit {
    color: #008080;
}

.word-meaning {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
}

.verse-expand-icon {
    float: right;
    margin-top: 0.3rem;
    transition: transform 0.3s;
}

.verse-card.expanded .verse-expand-icon {
    transform: rotate(180deg);
}

/* Expand Icon */
.expand-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 1.2rem;
}

/* Image Lightbox */
.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.image-lightbox.active {
    display: flex;
}
.image-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(255,215,0,0.3);
}
.word-thumbnail img {
    cursor: pointer;
}

/* Anuvaka Quick Navigation */
.anuvaka-quick-nav {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 2rem;
    overflow-x: auto;
    background: rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    flex-wrap: wrap;
    justify-content: center;
}
.anuvaka-quick-nav a {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s;
    border: 1px solid;
}
.namakam-active .anuvaka-quick-nav a {
    color: #8B0000;
    border-color: #B8860B;
    background: rgba(184,134,11,0.1);
}
.namakam-active .anuvaka-quick-nav a:hover,
.namakam-active .anuvaka-quick-nav a.active-nav {
    background: #B8860B;
    color: white;
}
.chamakam-active .anuvaka-quick-nav a {
    color: #191970;
    border-color: #008080;
    background: rgba(0,128,128,0.1);
}
.chamakam-active .anuvaka-quick-nav a:hover,
.chamakam-active .anuvaka-quick-nav a.active-nav {
    background: #008080;
    color: white;
}

.rudra_mantras-active .anuvaka-quick-nav a {
    color: #6A0DAD;
    border-bottom: 2px solid transparent;
}

.rudra_mantras-active .anuvaka-quick-nav a:hover,
.rudra_mantras-active .anuvaka-quick-nav a.active-nav {
    border-bottom-color: #9B59B6;
    color: #9B59B6;
}

/* Sitemap Page */
#sitemap {
    display: none;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    padding: 3rem 2rem;
}
.sitemap-container {
    max-width: 1000px;
    margin: 0 auto;
}
.sitemap-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-align: center;
}
.sitemap-container p.sitemap-desc {
    text-align: center;
    color: #aaa;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}
.sitemap-section {
    margin-bottom: 2.5rem;
}
.sitemap-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.sitemap-section.namakam-map h2 { color: #DAA520; border-bottom-color: #B8860B; }
.sitemap-section.chamakam-map h2 { color: #20B2AA; border-bottom-color: #008080; }
.sitemap-section.rudra_mantras-map h2 { color: #D4A5FF; border-bottom-color: #B57FDB; }
.sitemap-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.8rem;
}
.sitemap-links a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}
.namakam-map .sitemap-links a {
    color: #FFE4B5;
    background: rgba(184,134,11,0.1);
    border: 1px solid rgba(184,134,11,0.25);
}
.namakam-map .sitemap-links a:hover {
    background: rgba(184,134,11,0.3);
    color: #FFD700;
}
.chamakam-map .sitemap-links a {
    color: #B0E0E6;
    background: rgba(0,128,128,0.1);
    border: 1px solid rgba(0,128,128,0.25);
}
.chamakam-map .sitemap-links a:hover {
    background: rgba(0,128,128,0.3);
    color: #20B2AA;
}

.rudra_mantras-map .sitemap-links a {
    border-left-color: #B57FDB;
    color: #D4A5FF;
}

.rudra_mantras-map .sitemap-links a:hover {
    background: rgba(180, 130, 220, 0.15);
    border-left-color: #D4A5FF;
    color: #E8CCFF;
}
.sitemap-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 0.85rem;
}
.sitemap-back {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: #FFD700;
    color: #1a1a2e;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.sitemap-back:hover {
    background: #FFA500;
}

.donate-btn {
    display: inline-block;
    background: #FFD700;
    color: #2D1B3D;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
}

.donate-btn:hover {
    background: #FFC107;
    transform: scale(1.05);
}

.donate-btn-wrapper {
    display: flex;
    align-items: center;
}

.site-footer {
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: 2rem;
    color: #999;
    font-size: 0.8rem;
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    letter-spacing: 0.02em;
}
