/* theme.css - Main site theme and component styles */

html {
    scroll-behavior: smooth;
}
:root {
    --background: 0 0% 0%;
    --foreground: 0 0% 98%;
    --card: 0 0% 3%;
    --card-foreground: 0 0% 98%;
    --popover: 0 0% 3%;
    --popover-foreground: 0 0% 98%;
    --primary: 0 84% 60%;
    --primary-foreground: 0 0% 98%;
    --secondary: 0 0% 8%;
    --secondary-foreground: 0 0% 98%;
    --muted: 0 0% 8%;
    --muted-foreground: 0 0% 63%;
    --accent: 0 84% 60%;
    --accent-foreground: 0 0% 98%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 98%;
    --border: 0 0% 15%;
    --input: 0 0% 15%;
    --ring: 0 84% 60%;
    --radius: .5rem;
    line-height: inherit;
    margin: 0px;
    --success-color: 120 84% 60%;
}
button, [role=button] {
    cursor: pointer;
}
body {
    --tw-bg-opacity: 1;
    font-family: Inter;
    color: hsl(var(--foreground));
    overflow-x: hidden;
    background: #000;
    line-height: inherit;
    margin: 0px;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    background: #000;
    opacity: 1;
    pointer-events: auto;
}
.circle-loader {
    width: 64px;
    height: 64px;
    border: 8px solid #ef4444;
    border-top: 8px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#root {
    opacity: 0;
    transition: opacity 0.7s;
}
.float-in, .scroll-float-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.float-in.in-view, .scroll-float-in.in-view {
    opacity: 1;
    transform: translateY(0);
}
.float-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.float-in-left.in-view {
    opacity: 1;
    transform: translateX(0);
}
.float-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.float-in-right.in-view {
    opacity: 1;
    transform: translateX(0);
}
.notification-banner {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--background);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.notification-message {
    font-weight: bold;
    font-family: Inter;
}

.notification-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-banner.success {
}

.notification-banner.invalid {
}

.text-red {
    color: hsl(var(--primary)) !important;
}

.text-green {
    color: hsl(var(--success-color)) !important;
}

.text-white {
    color: hsl(var(--foreground)) !important;
}

.notification-progress-bar {
    height: 2px;
    background-color: hsl(var(--primary));
    width: 100%;
    margin-top: 5px;
    animation: shrink-progress 3s linear forwards;
}

@keyframes shrink-progress {
    from { width: 100%; }
    to { width: 0%; }
} 