html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.hero-section {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./image/banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.section-padding {
    padding: 5rem 0;
    background:
        url('./image/jamur-kiri.png'),
        url('./image/jamur-kanan.png'),
        linear-gradient(#7B267D, #BC605A, #D37E3E, #E09819);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: left bottom, right bottom, center;
    background-size: 250px auto, 150px auto, cover;
}

@media (max-width: 768px) {
    .section-padding {
        background-image: linear-gradient(#7B267D, #BC605A, #D37E3E, #E09819);
        background-position: center;
        background-size: cover;
    }
}

.fire-effect {
    position: relative;
    overflow: visible;
}

.fire-effect::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff0000, #ff9900, #ffcc00, #ff9900, #ff0000);
    background-size: 400% 400%;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.7;
    animation: fireAnimation 2s ease infinite;
    border-radius: 50px;
}

@keyframes fireAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.pulse-fire {
    animation: pulseFire 1.5s infinite;
}

@keyframes pulseFire {
    0% {
        box-shadow: 0 0 5px rgba(255, 100, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 50, 0, 0.8), 0 0 30px rgba(255, 100, 0, 0.6);
    }

    100% {
        box-shadow: 0 0 5px rgba(255, 100, 0, 0.5);
    }
}

.countdown-container {
    background: linear-gradient(135deg, #ff4500, #ff8c00, #ffd700);
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.countdown-item {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 8px 12px;
    margin: 0 5px;
    min-width: 60px;
    display: inline-block;
    text-align: center;
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.countdown-label {
    font-size: 0.7rem;
    color: #ffcc00;
    text-transform: uppercase;
    margin-top: 5px;
}

.fire-sale-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, #ff0000, #ff9900);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    transform: rotate(15deg);
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.5);
    z-index: 10;
    white-space: nowrap;
}

.technotree-button {
    position: relative;
    overflow: visible;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
}

/* Floating Animations */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-slow {
    animation: floatSlow 10s ease-in-out infinite;
}

@keyframes floatSlow {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-50px) translateX(20px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}

.floating-fade {
    animation: floatFade 8s ease-in-out infinite;
}

@keyframes floatFade {
    0% {
        transform: translateY(0px);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-30px);
        opacity: 1;
    }

    100% {
        transform: translateY(0px);
        opacity: 0.6;
    }
}

.schedule-item {
    border-left: 4px solid #7E0789;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    border-left: 4px solid #00CB96;
    transform: translateX(5px);
}

.sponsor-logo {
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.sponsor-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(135deg, #7E0789, #00CB96);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-ticket {
    transition: all 0.3s ease;
}

.btn-ticket:hover {
    transform: scale(1.05);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #7E0789, #00CB96);
    border-radius: 2px;
}

.info-icon {
    margin-right: 8px;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Gradasi untuk section guest stars */
.guest-section {
    background:
        linear-gradient(to bottom, #000000, #2D0040, #4D0073);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Container untuk guest section dengan max-width */
.guest-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

/* Additional floating styles for guest section */
.guest-floating-fast {
    animation: guestFloatFast 5s ease-in-out infinite;
    z-index: 1;
}

@keyframes guestFloatFast {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(10deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.guest-floating-slow {
    animation: guestFloatSlow 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes guestFloatSlow {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) translateX(15px) rotate(-5deg);
    }

    66% {
        transform: translateY(10px) translateX(-15px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
}

.guest-floating-rotate {
    animation: guestRotate 12s linear infinite;
    z-index: 1;
}

@keyframes guestRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.playlist-section {
    background: linear-gradient(to bottom, #4D0073, #7B267D);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.spotify-iframe {
    height: 600px;
    width: 100%;
    border-radius: 12px;
}

.playlist-content {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

.playlist-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .playlist-flex {
        flex-direction: row;
        align-items: flex-start;
    }

    .playlist-iframe-container {
        flex: 1;
    }

    .playlist-info {
        flex: 1;
    }
}

/* Container untuk links section dengan max-width */
.links-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

/* Responsive adjustments untuk mobile */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        padding-top: 4rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .info-icon {
        font-size: 1rem;
        margin-right: 6px;
    }

    .guest-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .guest-floating-icon {
        width: 2rem !important;
        opacity: 0.6 !important;
    }

    .guest-container,
    .playlist-content,
    .links-container {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .hero-section .max-w-4xl {
        padding: 1rem;
    }

    .hero-section img.mx-auto {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }

    .hero-section p.text-xl {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-section .flex.flex-col {
        gap: 1rem;
    }

    .hero-section .flex a,
    .hero-section .flex h1 {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .guest-section .text-center.mb-12 {
        margin-bottom: 2rem;
    }

    .guest-section h2.text-3xl {
        font-size: 1.75rem;
    }

    .guest-section p.text-lg {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .playlist-section {
        padding: 3rem 0;
    }

    .playlist-section h2.text-3xl {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .playlist-section p.text-lg {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .spotify-iframe {
        height: 400px;
    }

    .playlist-section .bg-gray-800 {
        padding: 1rem;
    }

    /* Links section mobile adjustments */
    #links .text-center.mb-12 {
        margin-bottom: 2rem;
    }

    #links h2.text-3xl {
        font-size: 1.75rem;
    }

    #links p.text-lg {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    #links .max-w-md {
        max-width: 100%;
    }

    #links a.block {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    #links .mx-auto img {
        width: 80px;
        height: 80px;
    }

    /* Floating icons mobile adjustments */
    .floating,
    .floating-slow,
    .floating-fade,
    .guest-floating-fast,
    .guest-floating-slow,
    .guest-floating-rotate {
        display: none;
    }
}