/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ff006e;
    max-width: 430px;
    margin: 0 auto;
}

.nav-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffbe0b;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-list {
    display: none;
    list-style: none;
    padding: 60px 20px 20px;
    margin: 0;
    background: #1a1a2e;
    border-top: 1px solid #ff006e;
}

.nav-list.active {
    display: block;
}

.nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 0;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 190, 11, 0.2);
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link:active {
    color: #ff006e;
    padding-left: 10px;
    border-bottom-color: #ff006e;
}

.nav-link.active {
    color: #ffbe0b;
    border-bottom-color: #ffbe0b;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-list {
        display: flex !important;
        padding: 15px 20px;
        border-top: none;
        justify-content: space-around;
        align-items: center;
    }
    
    .nav-link {
        padding: 5px 10px;
        border-bottom: none;
        font-size: 14px;
    }
    
    .nav-link:hover,
    .nav-link:active {
        padding-left: 10px;
        border-bottom: 2px solid #ff006e;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #1a1a2e;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Mobile Container */
.mobile-container {
    max-width: 430px;
    margin: 0 auto;
    background: linear-gradient(180deg, #2d2d5e 0%, #1a1a2e 100%);
    min-height: 100vh;
    position: relative;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1a1a2e;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.boombox-loader {
    display: flex;
    gap: 8px;
}

.boombox-loader span {
    width: 12px;
    height: 40px;
    background: linear-gradient(180deg, #ff006e 0%, #ffbe0b 100%);
    animation: loader-bounce 0.6s ease-in-out infinite;
}

.boombox-loader span:nth-child(2) {
    animation-delay: 0.1s;
}

.boombox-loader span:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes loader-bounce {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.5);
    }
}

/* Section Base */
.section {
    min-height: 100vh;
    padding: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.hero-section {
    background: #1a1a2e;
    overflow: hidden;
    padding: 0;
    margin-top: 30px; /* Space for fixed nav */
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-element {
    position: absolute;
    opacity: 0;
    animation: float-in 1s ease-out forwards;
}

.boombox {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 0, 110, 0.3));
}

.boombox-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0.2s;
    animation: float-in 1s ease-out 0.2s forwards, float 6s ease-in-out 1.2s infinite;
}

.boombox-2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.4s;
    animation: float-in 1s ease-out 0.4s forwards, float 8s ease-in-out 1.4s infinite;
}

.boombox-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 0.6s;
    animation: float-in 1s ease-out 0.6s forwards, float 7s ease-in-out 1.6s infinite;
}

.star {
    color: #ffbe0b;
    font-size: 40px;
}


.star-1 {
    top: 15%;
    left: 70%;
    animation: float-in 1s ease-out 0.3s forwards, twinkle 3s ease-in-out 1.3s infinite;
}

.star-2 {
    bottom: 30%;
    right: 20%;
    animation: float-in 1s ease-out 0.5s forwards, twinkle 4s ease-in-out 1.5s infinite;
}

.lightning {
    color: #ff006e;
    font-size: 50px;
}


.lightning-1 {
    top: 30%;
    left: 8%;
    animation: float-in 1s ease-out 0.7s forwards, flash 5s ease-in-out 1.7s infinite;
}

.lightning-2 {
    bottom: 5%;
    right: 8%;
    animation: float-in 1s ease-out 0.9s forwards, flash 6s ease-in-out 1.9s infinite;
}

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

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

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes flash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 20px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 50px);
}

.hero-logo {
    width: 90%;
    max-width: 350px;
    height: auto;
    animation: logo-appear 1.2s ease-out;
    margin-bottom: 30px;
}

@keyframes logo-appear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-date {
    margin-top: 20px;
    animation: fade-in 1s ease-out 0.8s backwards;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.date-main {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    color: #ffffff;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
}

.date-time {
    font-size: 18px;
    color: #ffbe0b;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    display: inline-block;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    margin-top: 40px;
    opacity: 0;
    animation: fade-in 1s ease-out 1.2s forwards, bounce 2s ease-in-out 2.2s infinite;
    z-index: 15;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    color: #ffffff;
    opacity: 0.7;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #ffbe0b;
    border-bottom: 2px solid #ffbe0b;
    transform: rotate(45deg);
    margin: 10px auto 0;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Hangout Section */
.hangout-section {
    background: linear-gradient(135deg, #2d2d5e 0%, #1a1a2e 100%);
    padding: 60px 16px;
}

.hangout-content {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.hangout-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hangout-title {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 48px;
    color: #ff006e;
    margin-bottom: 30px;
    text-shadow: 3px 3px 0 #ffbe0b;
}

.hangout-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Hangout Text Decorations */
.hangout-intro {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(90deg, #ff006e, #ffbe0b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.6;
}

.hangout-main {
    margin-bottom: 32px;
    line-height: 1.8;
    font-size: 16px;
}

.hangout-feature {
    margin-top: 32px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.6;
    text-align: center;
    color: #ffbe0b;
    text-shadow: 2px 2px 0 #ff006e;
}

.hangout-closing {
    margin-top: 32px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.6;
    text-align: center;
    color: #ffbe0b;
    text-shadow: 2px 2px 0 #ff006e;
}


/* Info Section */
.info-section {
    padding: 40px 16px;
    background: #1a1a2e;
}

.info-card {
    width: 100%;
    max-width: 350px;
    background: linear-gradient(135deg, #2d2d5e 0%, #3d3d6e 100%);
    padding: 30px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
    border: 2px solid rgba(255, 190, 11, 0.2);
}

.info-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.venue-card.visible {
    transition-delay: 0.1s;
}

.ticket-card.visible {
    transition-delay: 0.2s;
}

.time-card.visible {
    transition-delay: 0.3s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 32px;
}

.card-header h3 {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 28px;
    color: #ffbe0b;
}

.venue-name,
.ticket-price,
.time-date {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.venue-address,
.ticket-note,
.time-hours {
    font-size: 16px;
    opacity: 0.8;
}

.ticket-price {
    color: #ff006e;
}

/* Lineup Section */
.lineup-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #2d2d5e 100%);
    padding: 60px 16px;
}

.section-title {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 42px;
    color: #ffbe0b;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 3px 3px 0 #ff006e;
}

.lineup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
}

.dj-card {
    background: rgba(45, 45, 94, 0.5);
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 190, 11, 0.3);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease-out;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.dj-card.visible {
    opacity: 1;
    transform: scale(1);
}

.dj-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff006e 0%, #ffbe0b 100%);
    border-radius: 50%;
    border: 3px solid #ffbe0b;
    box-shadow: 0 0 20px rgba(255, 190, 11, 0.5);
    flex-shrink: 0;
}

.dj-name {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 4px;
}

.dj-genre {
    font-size: 12px;
    color: #ffbe0b;
    opacity: 0.8;
}

.dj-company {
    color: #ff006e;
    font-size: 11px;
    margin-top: 3px;
    opacity: 0.8;
}

.dj-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    gap: 12px;
}

.dj-card-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.dj-info {
    text-align: center;
}

.dj-description {
    color: #ffffff;
    font-size: 11px;
    line-height: 1.5;
    opacity: 0.9;
    text-align: left;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #ffbe0b;
    margin: 0;
    width: 100%;
}

/* Schedule Section */
.schedule-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #2d2d5e 0%, #1a1a2e 100%);
}

.schedule-timeline {
    margin-top: 40px;
    position: relative;
    padding-left: 40px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #ff006e 0%, #ffbe0b 100%);
}

.schedule-item {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-20px);
    animation: schedule-slide-in 0.6s ease-out forwards;
}

.schedule-item:nth-child(1) { animation-delay: 0.1s; }
.schedule-item:nth-child(2) { animation-delay: 0.2s; }
.schedule-item:nth-child(3) { animation-delay: 0.3s; }
.schedule-item:nth-child(4) { animation-delay: 0.4s; }
.schedule-item:nth-child(5) { animation-delay: 0.5s; }
.schedule-item:nth-child(6) { animation-delay: 0.6s; }
.schedule-item:nth-child(7) { animation-delay: 0.7s; }
.schedule-item:nth-child(8) { animation-delay: 0.8s; }
.schedule-item:nth-child(9) { animation-delay: 0.9s; }
.schedule-item:nth-child(10) { animation-delay: 1.0s; }
.schedule-item:nth-child(11) { animation-delay: 1.1s; }

.schedule-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #ffbe0b;
    border: 2px solid #1a1a2e;
}

.schedule-item.highlight::before {
    background: #ff006e;
    box-shadow: 0 0 10px #ff006e;
}

.schedule-time {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 24px;
    color: #ffbe0b;
    margin-bottom: 5px;
}

.schedule-content h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 8px;
}

.schedule-performer {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 700;
}

.schedule-company {
    font-size: 11px;
    color: #a0a0a0;
    opacity: 0.8;
}

.schedule-item.highlight .schedule-content h4 {
    color: #ff006e;
}

@keyframes schedule-slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Hero section decoration elements */
.star-img {
    width: 25px;
    height: auto;
    animation: float-in 1s ease-out forwards, twinkle 3s ease-in-out infinite;
}

.thunder-img {
    width: 18px;
    height: auto;
    animation: float-in 1s ease-out forwards, flash 5s ease-in-out infinite;
}

.star-img-1 {
    top: 10%;
    right: 8%;
    animation-delay: 0.4s;
    width: 20px;
}

.thunder-img-1 {
    top: 25%;
    left: 5%;
    animation-delay: 0.8s;
    width: 21px;
}

.star-img-2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1.2s;
    width: 30px;
}

.thunder-img-2 {
    bottom: 35%;
    right: 3%;
    animation-delay: 1.6s;
    width: 18px;
}

.star-img-3 {
    top: 45%;
    right: 12%;
    animation-delay: 2.0s;
    width: 25px;
}

/* Update section positioning */
.hangout-section,
.info-section,
.lineup-section,
.schedule-section,
.sponsors-section {
    position: relative;
    overflow: hidden;
}

/* Sponsors Section */
.sponsors-section {
    padding: 60px 20px;
    background: #1a1a2e;
    text-align: center;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.sponsor-item {
    background: rgba(45, 45, 94, 0.3);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 190, 11, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.sponsor-item:hover {
    transform: scale(1.05);
    border-color: rgba(255, 0, 110, 0.5);
}

.sponsor-logo {
    max-width: 100%;
    max-height: 60px;
    height: auto;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
    filter: brightness(1.1);
}

.sponsor-note {
    margin-top: 30px;
    font-size: 14px;
    color: #a0a0a0;
}


/* Footer */
.footer {
    background: #0d0d1e;
    padding: 30px 16px;
    text-align: center;
}

.footer p {
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 8px;
}


/* Mobile responsive adjustments for DJ cards */
@media (max-width: 480px) {
    .dj-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .dj-card-left {
        align-items: center;
        min-width: auto;
        flex-direction: row;
        gap: 15px;
    }
    
    .dj-card-right {
        align-items: flex-start;
    }
    
    .dj-description {
        font-size: 10px;
        text-align: left;
    }
    
    .dj-info {
        text-align: left;
    }
}

/* Responsive adjustments for very small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 50px;
    }
    
    .section-title {
        font-size: 36px;
    }
}