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

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: #000;
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #ff00ff;
    border-radius: 15px;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.5); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 255, 0.8); }
    100% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.5); }
}

h1 {
    text-align: center;
    font-size: 3em;
    text-shadow: 3px 3px 0px #00ffff;
    margin-bottom: 10px;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 3px 3px 0px #00ffff; }
    to { text-shadow: 3px 3px 0px #ff00ff, 0 0 10px #ffff00; }
}

.subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.nav-link {
    display: inline-block;
    padding: 15px 25px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: white;
    text-decoration: none;
    border: 2px solid #000;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.8);
}

/* NEWS SECTION */
.news-banner {
    background: linear-gradient(45deg, #ff00ff, #ffff00, #00ffff);
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite;
    padding: 15px;
    margin: 40px 0 30px;
    border-radius: 10px;
    border: 3px solid #000;
    position: relative;
    overflow: hidden;
}

.news-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.news-banner h2 {
    text-align: center;
    font-size: 2em;
    color: #000;
    text-shadow: 2px 2px 0px #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.news-feed {
    margin-top: 20px;
}

.news-post {
    background: rgba(255, 255, 255, 0.95);
    margin: 20px 0;
    padding: 25px;
    border: 2px solid;
    border-image: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00) 1;
    position: relative;
    transition: all 0.3s ease;
}

.news-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
}

.news-post::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-post:hover::before {
    opacity: 1;
}

.news-date {
    font-size: 0.9em;
    color: #ff00ff;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.news-date::before {
    content: '▶';
    margin-right: 8px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.news-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
    text-shadow: 1px 1px 0px #00ffff;
}

.news-content {
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.news-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.news-tag {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    text-transform: uppercase;
    border: 1px solid #000;
    font-weight: bold;
}

.bandcamp-player {
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
    margin: 20px 0;
    background: rgba(0, 255, 255, 0.1);
    padding: 5px;
}

.bandcamp-player iframe {
    display: block;
    width: 100% !important;
    height: 120px !important;
    border: none;
    border-radius: 7px;
}

.player-label {
    text-align: center;
    font-size: 0.9em;
    color: #00ffff;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 1px 1px 0px #000;
}

.decorative-text {
    position: fixed;
    font-size: 12px;
    color: rgba(255, 0, 255, 0.3);
    z-index: -1;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.glitch::before {
    animation: glitch-1 2s infinite;
    color: #ff00ff;
}

.glitch::after {
    animation: glitch-2 2s infinite;
    color: #00ffff;
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% { transform: translate(0); }
    15%, 49% { transform: translate(-2px, 2px); }
}

@keyframes glitch-2 {
    0%, 20%, 21%, 62%, 63%, 99%, 100% { transform: translate(0); }
    21%, 62% { transform: translate(2px, -1px); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    h1 { font-size: 2em; }
    .nav-menu { gap: 15px; }
    .nav-link { padding: 10px 15px; font-size: 0.9em; }
    .news-banner h2 { font-size: 1.5em; letter-spacing: 1px; }
    .news-post { padding: 20px; }
    .news-tags { gap: 5px; }
}