.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

:root {
    --bubble-gradient: linear-gradient(135deg, #BAE6FD 0%, #FBCFE8 100%);
}

.wheel-spin {
    background: conic-gradient(#BAE6FD 0deg 90deg,
            #FBCFE8 90deg 180deg,
            #FEF08A 180deg 270deg,
            #FFD93D 270deg 360deg);
}

.glass-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    transform: rotate(-10deg);
}

.glow-hover-pink:hover {
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.3);
}

.glow-hover-blue:hover {
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
}

.glow-hover-yellow:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.wheel-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    color: white;
    font-size: 28px !important;
    pointer-events: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wheel-icon-1 {
    transform: translate(-50%, -50%) rotate(36deg) translateY(-85px) rotate(-36deg);
}

.wheel-icon-2 {
    transform: translate(-50%, -50%) rotate(108deg) translateY(-85px) rotate(-108deg);
}

.wheel-icon-3 {
    transform: translate(-50%, -50%) rotate(180deg) translateY(-85px) rotate(-180deg);
}

.wheel-icon-4 {
    transform: translate(-50%, -50%) rotate(252deg) translateY(-85px) rotate(-252deg);
}

.wheel-icon-5 {
    transform: translate(-50%, -50%) rotate(324deg) translateY(-85px) rotate(-324deg);
    color: #8a6417;
}

/* Desktop adjustments */
@media (min-width: 768px) {
    .wheel-icon {
        font-size: 36px !important;
    }

    .wheel-icon-1 {
        transform: translate(-50%, -50%) rotate(36deg) translateY(-110px) rotate(-36deg);
    }

    .wheel-icon-2 {
        transform: translate(-50%, -50%) rotate(108deg) translateY(-110px) rotate(-108deg);
    }

    .wheel-icon-3 {
        transform: translate(-50%, -50%) rotate(180deg) translateY(-110px) rotate(-180deg);
    }

    .wheel-icon-4 {
        transform: translate(-50%, -50%) rotate(252deg) translateY(-110px) rotate(-252deg);
    }

    .wheel-icon-5 {
        transform: translate(-50%, -50%) rotate(324deg) translateY(-110px) rotate(-324deg);
    }
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #e6e2db;
    border-radius: 10px;
}

.dark .custom-scrollbar::-webkit-scrollbar-thumb {
    background: #3d3428;
}

.gradient-bg {
    background: radial-gradient(circle at 0% 0%, rgba(255, 105, 180, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 191, 255, 0.05) 0%, transparent 50%),
        #FAF9F6;
}

.wheel-clip {
    clip-path: circle(50% at 50% 50%);
}

.gamified-bg {
    background-color: #E0F2FE;
    background-image:
        radial-gradient(at 0% 0%, rgba(186, 230, 253, 0.4) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(251, 207, 232, 0.4) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(254, 240, 138, 0.4) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(251, 207, 232, 0.4) 0px, transparent 50%);
}

.level-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    border: 4px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.abstract-shape {
    position: absolute;
    filter: blur(60px);
    opacity: 0.5;
    z-index: -1;
    animation: float 20s infinite alternate ease-in-out;
}

@keyframes float {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(20px, 40px) rotate(10deg);
    }
}

.level-indicator {
    background: linear-gradient(90deg, #60A5FA, #F472B6, #FBBF24);
}

/* View Management */
.view {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#view-reset-me {
    background-color: #f8fafc;
}

.view.active {
    display: block;
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.similar-card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.similar-card:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.hidden {
    display: none;
}

/* Wavy Daisy Garden Animations */
@keyframes daisy-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes daisy-float-alt {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(-3deg);
    }
}

.daisy-float {
    animation: daisy-float 6s infinite ease-in-out;
}

.daisy-float-alt {
    animation: daisy-float-alt 7s infinite ease-in-out 0.5s;
}

/* Minimalist Reset Styles */
.mood-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mood-btn.reveal {
    opacity: 1;
    transform: translateY(0);
}

.mood-btn:active {
    transform: scale(0.95);
}

/* Gamification Animations */
@keyframes particle-burst {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.particle {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: 100;
}

/* Dynamic Background Classes */
/* Blog & Article Styles */
#view-blog {
    background-color: #FAF9F6;
}

.blog-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-8px);
}

#article-body h2 {
    color: #0f172a;
    font-weight: 900;
    font-size: 1.875rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
}

#article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

#article-body blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
}

#article-body ul {
    list-style-type: none;
    padding-left: 0;
}

#article-body ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

#article-body ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f472b6;
    font-weight: bold;
}

/* Base View display logic */
.view {
    display: none;
}

.view.active {
    display: block;
}