/* StreamDonate Global Theme Stylesheet */

:root {
    --bg-primary: #0a0b0d;
    --bg-secondary: #111318;
    --bg-card: #171a21;
    --border-color: rgba(255, 255, 255, 0.08);
    --primary-glow: rgba(138, 43, 226, 0.6);
    --primary-color: #8A2BE2;
    --secondary-color: #00f2fe;
    --text-muted: #8d929a;
}

body {
    background-color: var(--bg-primary);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .brand-gradient-text {
    font-family: 'Outfit', sans-serif;
}

/* Glassmorphism Classes */
.bg-dark-glass {
    background: rgba(17, 19, 24, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.bg-dark-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* Glow effects */
.btn-glow {
    box-shadow: 0 0 15px var(--primary-glow);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 25px var(--primary-color);
    transform: translateY(-2px);
}

/* Brand Text Gradient */
.brand-gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* General Layout helpers */
.hover-white:hover {
    color: #ffffff !important;
}

.cursor-pointer {
    cursor: pointer;
}

.width-20 {
    width: 20px;
    text-align: center;
}

/* Custom transitions and animations */
.hover-bg {
    transition: all 0.2s ease;
    border-radius: 8px;
}
.hover-bg:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Toast Container & Alerts */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.custom-toast {
    background: rgba(17, 19, 24, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    min-width: 300px;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Landing Page Hero and Content */
.hero-section {
    position: relative;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 60%);
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 70%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.feature-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(138, 43, 226, 0.3);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 242, 254, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Auth Cards */
.auth-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.auth-card {
    width: 100%;
    max-width: 480px;
}
