body {
    background-color: #030108;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.bg-noise {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
.ambient-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.3;
    animation: pulse-glow 10s ease-in-out infinite alternate;
    pointer-events: none;
}
.glow-1 { top: -20%; left: -10%; background: radial-gradient(circle, var(--tw-colors-sunset-pink), transparent 70%); }
.glow-2 { bottom: -20%; right: -10%; background: radial-gradient(circle, var(--tw-colors-sunset-orange), transparent 70%); }
@keyframes pulse-glow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.2; }
    100% { transform: scale(1.1) translate(20px, -20px); opacity: 0.4; }
}
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: #030108;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}
.loading-text {
    font-weight: 800; font-size: 1.5rem; letter-spacing: 0.2em;
    background: linear-gradient(to right, #FF4B2B, #FF416C);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: breathe 1.5s infinite alternate;
}
@keyframes breathe { from { opacity: 0.4; } to { opacity: 1; } }
.vinyl-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(255, 65, 108, 0.2), inset 0 0 20px rgba(0,0,0,0.8);
    flex-shrink: 0;
}
@media (min-width: 768px) { .vinyl-wrapper { max-width: 450px; } }
.vinyl {
    width: 100%; height: 100%;
    border-radius: 50%; background: #0a0a0a;
    position: absolute; top: 0; left: 0;
    background-image: repeating-radial-gradient( #0a0a0a 0%, #0a0a0a 2%, #111 2.5%, #0a0a0a 3% );
    border: 2px solid #222;
    animation: spinRecord 4s linear infinite;
}
.vinyl-label {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 38%; height: 38%; border-radius: 50%;
    background: linear-gradient(to right, #FF4B2B, #FF416C);
    display: flex; justify-content: center; align-items: center;
    flex-direction: column; color: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
}
.vinyl-hole {
    width: 12px; height: 12px; border-radius: 50%;
    background: #030108; border: 2px solid rgba(255,255,255,0.2);
    position: absolute; z-index: 10;
}
.label-text-container {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1.1;
}
.vinyl-glare {
    position: absolute; inset: 0; border-radius: 50%;
    background: conic-gradient(from 45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 10%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.08) 60%, rgba(255,255,255,0) 70%);
    pointer-events: none; z-index: 5;
}
@keyframes spinRecord { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.tonearm {
    position: absolute; top: -5%; right: -5%;
    width: 120px; z-index: 10;
    transform-origin: top right; transform: rotate(20deg);
    filter: drop-shadow(4px 10px 6px rgba(0,0,0,0.6));
    pointer-events: none;
}
@media (min-width: 768px) { .tonearm { width: 180px; top: -2%; right: -2%; } }
.bento-card {
    background: var(--tw-colors-hp-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; overflow: hidden;
}
.bento-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 75, 43, 0.1), transparent 50%);
    opacity: 0; transition: opacity 0.4s;
}
.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 65, 108, 0.3);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.bento-card:hover::before { opacity: 1; }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.ticker-wrap {
    width: 100%; overflow: hidden;
    background: #11081a; border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 8px 0; display: flex;
}
.ticker {
    display: flex; white-space: nowrap; width: max-content;
    animation: ticker 25s linear infinite;
}
.ticker-item {
    margin: 0 2rem; font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.7);
    flex-shrink: 0;
}
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #030108; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #FF416C; }

/* YouTube placeholder styling */
.yt-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-image: url('https://img.youtube.com/vi/pvAXKVUSGFk/maxresdefault.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.yt-play-button {
    width: 68px;
    height: 48px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease-in-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.yt-placeholder:hover .yt-play-button {
    background-color: rgba(255, 0, 0, 1);
}

.yt-play-button::before {
    content: '';
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
}