body {
    background-color: #060608;
    color: #e2e8f0;
    overflow-x: hidden;
}

.hero-bg {
    background: radial-gradient(circle at center, #1a1a1d 0%, #060608 100%);
    position: relative;
    overflow: hidden;
}

/* Particle container for background animation */
#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.3); /* mystic-gold with opacity */
}

.content-wrapper {
    position: relative;
    z-index: 10;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
}

/* Prevent ugly selection highlight on the animated hero title */
.hero-title,
.hero-title * {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.hero-title::selection,
.hero-title *::selection {
    background: transparent;
}
.hero-title::-moz-selection,
.hero-title *::-moz-selection {
    background: transparent;
}

