@font-face {
    font-family: 'Silent Brush';
    src: url('../silent-brush-font-1757486493-0/silentbrush-4bwk4.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/oswald-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/oswald-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/oswald-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/oswald-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.announcement-bar {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: #fff;
    text-align: center;
    padding: 0.8rem 1rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    border-bottom: 2px solid #4a5568;
}

.announcement-bar a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.announcement-bar a:hover {
    border-bottom-color: #fff;
}

header {
    background-color: transparent;
    padding: 2.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    top: 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    gap: 3rem;
}

.logo {
    height: 120px;
    width: auto;
    transition: height 0.3s ease;
    filter: brightness(1.1) contrast(1.2);
    font-weight: bold;
}

header.scrolled .logo {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-left {
    display: flex;
    gap: 3rem;
}

.nav-right {
    display: flex;
    gap: 3rem;
}

.nav-left a, .nav-right a {
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

header.scrolled .nav-left a, header.scrolled .nav-right a {
    font-size: 0.9rem;
}

.nav-left a:hover, .nav-right a:hover {
    color: #CCDB20;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
}

.mobile-nav.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    top: 0;
}

.mobile-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.mobile-hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1002;
    transition: all 0.3s ease;
}

.mobile-hamburger span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.mobile-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-logo {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
    filter: brightness(1.1) contrast(1.2);
}

.mobile-nav.scrolled .mobile-logo {
    height: 40px;
}

.mobile-dropdown {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    list-style: none;
    transition: right 0.3s ease;
    z-index: 1001;
    margin: 0;
    padding: 0;
}

.mobile-dropdown.active {
    right: 0;
}

.mobile-dropdown li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.mobile-dropdown.active li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-dropdown.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-dropdown.active li:nth-child(2) { transition-delay: 0.2s; }
.mobile-dropdown.active li:nth-child(3) { transition-delay: 0.3s; }
.mobile-dropdown.active li:nth-child(4) { transition-delay: 0.4s; }

.mobile-dropdown li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.mobile-dropdown li a:hover {
    color: #CCDB20;
}

.hero {
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.9) 80%, rgba(0,0,0,1) 100%), url('background-desktop.webp');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 240px;
}

@media (max-width: 1200px) {
    .hero {
        background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.9) 80%, rgba(0,0,0,1) 100%), url('background-tablet.webp');
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 768px) {
    .hero {
        background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.9) 80%, rgba(0,0,0,1) 100%), url('background-mobile.webp');
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }
}

.hero-content {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 2fr 1.4fr;
    gap: 0;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
    position: relative;
    z-index: 10;
    transform: translateX(80px);
    margin-left: 60px;
}

.hero-image {
    text-align: center;
    position: relative;
    z-index: 5;
    transform: translateX(-120px);
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid #333;
    box-shadow:
        0 0 8px rgba(0, 0, 0, 0.3),
        0 0 16px rgba(0, 0, 0, 0.6),
        0 0 24px rgba(0, 0, 0, 0.8),
        0 0 32px rgba(0, 0, 0, 0.4);
    transform: translateY(-15px);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
}

.hero-content h1 {
    font-family: 'Silent Brush', cursive;
    font-size: clamp(5rem, 12vw, 9rem);
    font-weight: normal;
    margin-bottom: 1rem;
    color: #CCDB20;
    text-shadow:
        2px 2px 0px #333,
        4px 4px 0px #222,
        6px 6px 0px #111,
        8px 8px 16px rgba(0, 0, 0, 0.8),
        12px 12px 24px rgba(0, 0, 0, 0.6);
    letter-spacing: -5px;
    transform: rotate(-18deg) skew(-15deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.hero-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    margin: 1rem 0 2rem 0;
    letter-spacing: 1px;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        4px 4px 8px rgba(0, 0, 0, 0.4);
    margin-left: 50px;
}

.hero-content p {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        4px 4px 8px rgba(0, 0, 0, 0.4);
}

.hero-content p a {
    color: #CCDB20;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-content p a:hover {
    color: #A8B317;
}

.btn {
    background-color: #CCDB20;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    margin-left: 50px;
}

.btn:hover {
    background-color: #A8B317;
    transform: translateY(-2px);
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.4),
        0 12px 24px rgba(0, 0, 0, 0.3);
}

.section {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    .section {
        padding: 2rem 1rem;
        scroll-margin-top: 120px;
    }
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto 2rem auto;
    color: #fff;
    border-bottom: 8px solid #fff;
    padding-bottom: 0.3rem;
    display: inline-block;
    width: auto;
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 1.5rem;
    }

    .section {
        text-align: center;
    }

    .section .section-title {
        display: inline-block;
    }
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background-color: #111;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #CCDB20;
}

.card p {
    color: #ccc;
}

.music-section {
    background-color: #000;
    padding: 4rem 0 2rem 0;
}

#music {
    scroll-margin-top: 0;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.album-card {
    background-color: #000;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: scale(1.05);
}

.album-art {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-image: url('../album-covers/opening-cover-400.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #666;
    border: 1px solid #333;
}

.album-info {
    padding: 1rem;
}

.album-info h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #CCDB20;
    font-size: 1.2rem;
}

.album-info p {
    color: #ccc;
    font-size: 0.9rem;
}

.bandcamp-player {
    margin: 3rem 0;
    text-align: center;
}

.bandcamp-player iframe {
    border: none;
    width: 100%;
    max-width: 500px;
    height: 320px;
}

.shows-section {
    padding: 2rem 0 4rem 0;
}

#shows {
    scroll-margin-top: 100px;
}

.show-list {
    list-style: none;
}

.show-item {
    background-color: #111;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.show-item:hover {
    transform: translateY(-2px);
}

.show-info h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #CCDB20;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.show-info p {
    color: #ccc;
}

.show-date {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

footer {
    background-color: #000;
    padding: 2rem 0 1.5rem 0;
    text-align: center;
}

#contact {
    scroll-margin-top: 100px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #CCDB20;
}

.media-section {
    background-color: #111;
    padding: 4rem 0;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 1rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.media-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.instagram-post {
    aspect-ratio: 1 / 1;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    text-align: center;
    padding: 0.5rem;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.instagram-post img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.instagram-post:hover {
    transform: scale(1.05);
}

.instagram-handle {
    text-align: center;
    margin-top: 1rem;
}

.instagram-handle a {
    color: #CCDB20;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.instagram-handle a:hover {
    color: #A8B317;
}

@media (max-width: 768px) {
    .announcement-bar {
        display: none;
    }

    header {
        display: none;
    }

    .mobile-nav {
        display: block;
        top: 0;
    }

    .mobile-nav.scrolled {
        top: 0;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-content h1 {
        transform: rotate(0deg) skew(0deg) !important;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        text-align: center;
    }

    .hero-content h2 {
        margin-left: 0 !important;
    }

    .btn {
        margin-left: 0 !important;
        display: block;
        width: fit-content;
        margin: 2rem auto 0 auto;
    }

    .show-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .media-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-image {
        order: -1 !important;
        margin-bottom: 1rem !important;
    }

    .hero-text {
        text-align: center !important;
        transform: translateX(0) !important;
        margin-left: 0 !important;
        order: 1 !important;
    }

    .hero-image {
        transform: translateX(0) !important;
    }

    .hero-image img {
        width: 300px !important;
        height: 300px !important;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .about-grid > div:first-child {
        order: 1;
        text-align: center;
    }

    .about-grid > div:last-child {
        order: 2;
        text-align: left;
    }
}

.consent-banner {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: #fff;
    padding: 1rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    border-top: 2px solid #4a5568;
}

.consent-banner.hidden {
    display: none;
}

.consent-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.consent-text {
    flex: 1;
    min-width: 300px;
}

.consent-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .consent-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .consent-text {
        min-width: unset;
        margin-bottom: 0.5rem;
    }
}

.consent-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consent-btn.accept {
    background: #CCDB20;
    color: #000;
}

.consent-btn.accept:hover {
    background: #A8B317;
    color: #000;
}

.consent-btn.reject {
    background: #666;
    color: #fff;
}

.consent-btn.reject:hover {
    background: #888;
}

.external-content-placeholder {
    background: #222;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.bandcamp-overlay-placeholder {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 1rem;
}

.external-content-placeholder-small {
    background: rgba(34, 34, 34, 0.95);
    border: 1px solid #CCDB20;
    border-radius: 4px;
    padding: 0.75rem;
    text-align: center;
    color: #ccc;
}

.external-content-placeholder-small p strong {
    font-family: 'Oswald', sans-serif;
    color: #CCDB20;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
}

.load-content-btn-small {
    background: #CCDB20;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.load-content-btn-small:hover {
    background: #A8B317;
    color: #000;
}

.privacy-page {
    padding-top: 200px;
    text-align: center;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
    line-height: 1.8;
    text-align: left;
}

.privacy-date {
    margin-bottom: 2rem;
    color: #999;
    font-size: 0.9rem;
}

.privacy-h2 {
    font-family: 'Oswald', sans-serif;
    color: #CCDB20;
    margin: 2rem 0 1rem 0;
    text-transform: uppercase;
}

.privacy-h3 {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    margin: 1.5rem 0 0.5rem 0;
}

.privacy-p {
    margin-bottom: 1.5rem;
}

.privacy-p-small {
    margin-bottom: 1rem;
}

.privacy-ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-ul-contact {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    list-style: none;
}

.privacy-link {
    color: #CCDB20;
}

.privacy-highlight {
    background: #111;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #CCDB20;
    margin: 2rem 0;
}

.privacy-highlight p {
    margin: 0;
    color: #ccc;
}

.footer-privacy-link {
    color: #CCDB20;
}

.footer-copyright {
    color: #999;
    font-size: 0.8rem;
}

.hero-link {
    color: #CCDB20;
    text-decoration: none;
}

.album-art-opening {
    background-image: url('../album-covers/opening-cover-400.webp');
    position: relative;
}

.album-art-worshipping {
    background-image: url('../album-covers/worshipping-death.webp');
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.about-band-photo {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    display: block;
}

@media (max-width: 768px) {
    .about-band-photo {
        max-height: 400px;
        object-fit: contain;
    }
}

.about-band-credits {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #999;
    line-height: 1.4;
}

.about-text-container {
    margin-top: 0;
    padding-top: 0;
}

.about-text-p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin: 0 0 2rem 0;
    padding: 0;
}

.about-text-p-last {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin: 0;
    padding: 0;
}

.youtube-video-bg {
    background: linear-gradient(45deg, #1a1a1a 25%, #2a2a2a 25%, #2a2a2a 50%, #1a1a1a 50%, #1a1a1a 75%, #2a2a2a 75%, #2a2a2a);
    background-size: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.youtube-overlay-placeholder {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 1rem;
}

.external-content-placeholder p strong {
    font-family: 'Oswald', sans-serif;
    color: #CCDB20;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.external-content-placeholder p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.load-content-btn {
    background: #CCDB20;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-content-btn:hover {
    background: #A8B317;
    color: #000;
}

/* Small viewport height styling */
@media (max-height: 700px) {
    header {
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
    }

    header .logo {
        width: 60px;
        height: 60px;
    }

    header .nav-left a, header .nav-right a {
        color: white;
    }

    .mobile-nav .mobile-logo {
        width: 60px;
        height: 60px;
    }
}
