:root {
    --primary: #00f2ff;
    --primary-glow: rgba(0, 242, 255, 0.5);
    --accent: #ff00ea;
    --accent-glow: rgba(255, 0, 234, 0.5);
    --bg-dark: #050505;
    --card-bg: rgba(20, 20, 20, 0.8);
    --text-main: #ffffff;
    --text-dim: #b0b0b0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Gradient */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #050505 100%);
    z-index: -3;
}

/* Stars */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
    animation: twinkle var(--duration) infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Embers */
.ember-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.ember-particle {
    position: absolute;
    bottom: -10px;
    width: 4px;
    height: 4px;
    background: #ff5e00;
    border-radius: 50%;
    filter: blur(1px) drop-shadow(0 0 5px #ff5e00);
    opacity: 0.8;
    animation: rise var(--duration) infinite linear;
}

@keyframes rise {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.8; }
    100% { transform: translateY(-110vh) translateX(var(--drift)) scale(0); opacity: 0; }
}

/* Header image */
.headbar-full-width {
    width: 100%;
    position: relative;
    z-index: 100;
}

.headbar-image-full {
    width: 100%;
    height: auto;
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
