* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow: hidden;
    background: #1a1a2e;
}

.slide-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: white;
    position: relative;
}

/* Unified mushy gradient backgrounds */
.slide1 { 
    background: radial-gradient(ellipse at top left, rgba(138, 97, 255, 0.3), transparent 50%), 
                radial-gradient(ellipse at bottom right, rgba(255, 105, 180, 0.3), transparent 50%), #1a1a2e; 
}
.slide2 { 
    background: radial-gradient(ellipse at top right, rgba(255, 105, 180, 0.3), transparent 50%), 
                radial-gradient(ellipse at bottom left, rgba(138, 97, 255, 0.3), transparent 50%), #1a1a2e; 
}
.slide3 { 
    background: radial-gradient(ellipse at center, rgba(138, 97, 255, 0.3), transparent 50%), 
                radial-gradient(ellipse at bottom, rgba(255, 105, 180, 0.3), transparent 50%), #1a1a2e; 
}
.slide4 { 
    background: radial-gradient(ellipse at bottom left, rgba(255, 105, 180, 0.3), transparent 50%), 
                radial-gradient(ellipse at top right, rgba(138, 97, 255, 0.3), transparent 50%), #1a1a2e; 
}
.slide5 { 
    background: radial-gradient(ellipse at top, rgba(138, 97, 255, 0.3), transparent 50%), 
                radial-gradient(ellipse at bottom, rgba(255, 105, 180, 0.3), transparent 50%), #1a1a2e; 
}
.slide6 { 
    background: radial-gradient(ellipse at center left, rgba(255, 105, 180, 0.3), transparent 50%), 
                radial-gradient(ellipse at center right, rgba(138, 97, 255, 0.3), transparent 50%), #1a1a2e; 
}
.slide7 { 
    background: radial-gradient(ellipse at bottom right, rgba(138, 97, 255, 0.3), transparent 50%), 
                radial-gradient(ellipse at top left, rgba(255, 105, 180, 0.3), transparent 50%), #1a1a2e; 
}
.slide8 { 
    background: radial-gradient(ellipse at top, rgba(255, 105, 180, 0.3), transparent 50%), 
                radial-gradient(ellipse at center, rgba(138, 97, 255, 0.3), transparent 50%), #1a1a2e; 
}
.slide9 { 
    background: radial-gradient(ellipse at center, rgba(138, 97, 255, 0.3), transparent 50%), 
                radial-gradient(ellipse at top, rgba(255, 105, 180, 0.3), transparent 50%), #1a1a2e; 
}

.content-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px 30px;
    width: 85%;
    max-width: 380px;
    aspect-ratio: 9 / 16;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease-out;
}

h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.stat {
    font-size: 4rem;
    font-weight: 900;
    margin: 15px 0;
    animation: scaleIn 0.6s ease-out 0.4s backwards;
    background: linear-gradient(135deg, #8a61ff, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    color: rgba(255, 255, 255, 0.9);
}

.list {
    list-style: none;
    font-size: 1.2rem;
    margin-top: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    width: 100%;
}

.list li {
    margin: 10px 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-placeholder {
    width: 100%;
    max-width: 250px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    color: rgba(255, 255, 255, 0.5);
}

.screenshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.turtle-images {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    width: 100%;
    justify-content: center;
}

.turtle-images img {
    width: 45%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.texts-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.texts-screenshot {
    width: 100%;
    max-width: 280px;
    max-height: 450px;
    object-fit: cover;
    object-position: top;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.songs-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 400px;
    padding-right: 5px;
}

.song-item {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.song-number {
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8a61ff, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 18px;
    flex-shrink: 0;
}

.songs-list iframe {
    border-radius: 12px;
    height: 80px !important;
    width: calc(100% - 23px) !important;
    max-width: calc(100% - 23px) !important;
    flex: 1;
}

.songs-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 400px;
    padding-right: 0;
}

.movies-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.movie-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 15px;
    background-size: auto 120%;
    background-position: left center;
    background-repeat: no-repeat;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 80px;
}

.movie-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    z-index: 0;
}

.movie-number {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8a61ff, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 30px;
    z-index: 1;
    position: relative;
}

.movie-title {
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 1;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.progress-dots {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 1000;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #8a61ff, #ff69b4);
    width: 24px;
    border-radius: 10px;
}

.replay-btn {
    margin-top: 30px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(138, 97, 255, 0.3);
    color: white;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.replay-btn:hover {
    background: rgba(138, 97, 255, 0.5);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hide scrollbar but keep functionality */
body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

