:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #ff3333; /* Cinematic Red */
    --card-bg: #111111;
}

html{
    /* Removed scroll-behavior: smooth to let GSAP handle it */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    cursor: none; /* Custom cursor logic */
}

h1, h2, h3, h4, .font-syne {
    font-family: 'Syne', sans-serif;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: white;
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Smooth marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}
.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Grid Background */
.grid-bg {
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

/* Utility for hiding scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.toast-enter {
  transform: translateY(12px) scale(.98);
  opacity: 0;
}
.toast-enter-active {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition: all 260ms cubic-bezier(.16,1,.3,1);
}
.toast-exit {
  opacity: 1;
}
.toast-exit-active {
  opacity: 0;
  transform: translateY(8px) scale(.98);
  transition: all 200ms ease;
}