@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@400;700&display=swap');

:root {
    --primary-yellow: #ffde00;
    --background-dark: #000000;
    --text-light: #ffffff;
    --accent-yellow: #ffd700;
    --main-font: 'Anonymous Pro', monospace;
    --glitch-color1: #ff00ff;
    --glitch-color2: #00ffff;
}

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

body {
    font-family: var(--main-font);
    background-color: var(--background-dark);
    color: var(--primary-yellow);
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid var(--primary-yellow);
    position: relative;
    z-index: 10;
    backdrop-filter: blur(5px);
}
.logo h1 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    position: relative;
    text-shadow: 0 0 5px var(--primary-yellow);
}

@keyframes glitch-text {
    0%, 100% { transform: none; opacity: 1; }
    7% { transform: skew(-0.5deg, -0.9deg); opacity: 0.75; }
    10% { transform: none; opacity: 1; }
    27% { transform: none; opacity: 1; }
    30% { transform: skew(0.8deg, -0.1deg); opacity: 0.75; }
    35% { transform: none; opacity: 1; }
    52% { transform: none; opacity: 1; }
    55% { transform: skew(-1deg, 0.2deg); opacity: 0.75; }
    50% { transform: none; opacity: 1; }
    72% { transform: none; opacity: 1; }
    75% { transform: skew(0.4deg, 1deg); opacity: 0.75; }
    80% { transform: none; opacity: 1; }
    100% { transform: none; opacity: 1; }
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--text-light);
}

.hero {
    position: relative;
    display: flex;
    min-height: 85vh;
    padding: 0;
    overflow: hidden;
    border: 10px solid var(--primary-yellow);
    border-width: 10px 0;
    background-color: rgba(0, 0, 0, 0.9);
}

.globe-visual {
    position: absolute;
    right: -10%;
    top: -10%;
    width: 120%;
    height: 120%;
    max-width: none;
    max-height: none;
    perspective: 1000px;
    z-index: 0;
    margin-left: 0;
    overflow: visible;
}

.hero-content {
    flex: 1;
    max-width: 100%;
    z-index: 2;
    padding: 4rem 2rem;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.hero h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--primary-yellow);
    text-transform: uppercase;
    position: relative;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-yellow);
    color: var(--background-dark);
}

.featured-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
    border-bottom: 1px solid rgba(255, 222, 0, 0.3);
}

.feature-box {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border: 1px solid var(--primary-yellow);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 0 15px rgba(255, 222, 0, 0.2);
}

.feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/a/275d757b-fd67-4952-88c9-cc54be3a1c4b);
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    mix-blend-mode: overlay;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 222, 0, 0.4);
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-section {
    padding: 4rem 2rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-yellow);
}

.about-section h2::before {
    content: "⟁ ⧗ ⧖ ⧉";
    position: absolute;
    top: -1.5rem;
    left: 0;
    font-size: 1rem;
    color: var(--primary-yellow);
    opacity: 0.5;
}

.about-section h2::after {
    content: "⧉ ⧖ ⧗ ⟁";
    position: absolute;
    bottom: -1.5rem;
    right: 0;
    font-size: 1rem;
    color: var(--primary-yellow);
    opacity: 0.5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-text a {
    color: var(--primary-yellow);
    text-decoration: none;
}

.about-text a:hover {
    text-decoration: underline;
}

.methodology h3 {
    margin: 2rem 0 1rem;
    color: var(--primary-yellow);
}

.methodology ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.methodology li {
    margin-bottom: 1rem;
    color: var(--text-light);
    padding-left: 1rem;
    border-left: 2px solid var(--primary-yellow);
}

.methodology strong {
    color: var(--primary-yellow);
}

.archived-transmission {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    border: 1px solid var(--primary-yellow);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background-image: url(/a/3577e0f8-51d2-40b3-8145-5bbb576e74df);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.archived-transmission::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/a/f618dd10-335b-4c65-89b5-883e215e4764);
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
    mix-blend-mode: overlay;
}

.archived-transmission::after {
    content: "CLASSIFIED";
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    color: var(--primary-yellow);
    font-size: 8rem;
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

.archived-transmission h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.archived-transmission p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.archived-transmission ul {
    list-style: none;
    margin: 1rem 0;
}

.archived-transmission li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
    padding-left: 1rem;
    border-left: 2px solid var(--primary-yellow);
}

.redacted {
    background-color: var(--primary-yellow);
    color: rgba(0, 0, 0, 0);
    padding: 0 0.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
    display: inline-block;
}

.redacted:hover {
    color: var(--background-dark);
    background-color: var(--primary-yellow);
    text-shadow: 0 0 5px var(--primary-yellow);
    box-shadow: 0 0 10px var(--primary-yellow);
}

.redacted::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 222, 0, 0.3);
    z-index: -1;
    animation: glitch-bg 2s infinite;
}

@keyframes glitch-bg {
    0%, 100% { transform: none; opacity: 1; }
    25% { transform: skew(1deg); opacity: 0.75; }
    50% { transform: skew(-1deg); opacity: 0.9; }
    75% { transform: skew(0.5deg); opacity: 0.8; }
}

.disabled-link {
    color: #ff0000 !important;
    cursor: not-allowed;
    opacity: 0.7;
    text-decoration: none;
}

.media-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    background-color: var(--background-dark);
}

.bandcamp-embed {
    grid-column: 1;
    border: 1px solid var(--primary-yellow);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bandcamp-embed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/a/54b734e9-8836-4290-b2a6-13dabfbf4c9d);
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.youtube-embed {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.youtube-embed iframe {
    width: 100%;
    height: 230px;
    border: 1px solid var(--primary-yellow);
}

.contact-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--primary-yellow);
    padding: 2rem;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(255, 222, 0, 0.4);
    max-width: 90%;
    text-align: center;
    display: none;
}

.contact-popup p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--primary-yellow);
}

.contact-popup .close-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--primary-yellow);
    color: var(--primary-yellow);
    cursor: pointer;
}

footer {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 222, 0, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--primary-yellow);
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

footer p {
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul {
        margin-top: 1rem;
    }
    
    nav ul li {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .hero {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 2rem 1rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .globe-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 60vh;
        margin: 2rem 0;
    }
    
    .featured-areas {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .media-container {
        grid-template-columns: 1fr;
    }
    
    .bandcamp-embed {
        grid-column: 1;
    }
    
    .youtube-embed {
        grid-column: 1;
    }
    
    .youtube-embed iframe {
        height: 200px;
    }
    
    .bandcamp-embed iframe {
        height: 500px;
    }
}