:root {
    --bg-color: #000000;
    --glass-bg: rgba(25, 25, 25, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --accent-red: #fa243c;
    --accent-pink: #ff2d55;
    --accent-purple: #af52de;
    --highlight-gradient: linear-gradient(135deg, #ff2d55 0%, #af52de 100%);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    min-height: 100vh;
}

/* Background Animated Orbs */
.bg-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.5;
    animation: move 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-pink);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #007aff;
    top: 40%;
    left: 10%;
    animation-delay: -10s;
}

@keyframes move {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

/* Layout */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section {
    margin-bottom: 60px;
    padding: 40px;
    border-radius: 24px;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Transitions */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
#hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.1) 0%, rgba(175, 82, 222, 0.1) 100%);
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.highlight {
    background: var(--highlight-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    margin: 5px;
    color: var(--text-secondary);
}

.badge.mbti {
    background: var(--highlight-gradient);
    color: white;
    font-weight: 600;
}

/* Goals Section */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Category Styles */
.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.category-icon {
    color: var(--accent-pink);
    width: 24px;
    height: 24px;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-pink);
}

.category-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Ranking List (DRINK) */
.ranking-list {
    display: grid;
    gap: 16px;
}

.rank-item {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    gap: 20px;
    align-items: center;
    transition: transform 0.3s ease;
}

.rank-item:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.08);
}

.rank-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-pink);
    min-width: 40px;
    text-align: center;
}

.rank-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.rank-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Music Grid */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.music-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.music-card:hover {
    transform: scale(1.05);
}

.album-art {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 12px;
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    color: white;
    width: 48px;
    height: 48px;
}

.music-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.music-info .rank-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
}

.song-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.artist {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Food List */
.food-list {
    display: grid;
    gap: 40px;
}

.food-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: center;
}

.food-item.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.food-image {
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.food-header .rank-badge {
    background: var(--accent-pink);
    color: white;
    padding: 2px 10px;
    border-radius: 8px;
    font-weight: 700;
}

.food-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

.food-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .section {
        padding: 25px;
    }

    .food-item,
    .food-item.reverse {
        grid-template-columns: 1fr;
    }

    .food-item.reverse .food-content {
        order: 2;
    }

    .food-item.reverse .food-image {
        order: 1;
    }
}