:root {
    --primary-glow: #ff4d6d;
    --secondary-glow: #c77dff;
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.25);
    --text-color: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at top left, #2b1055, #7597de, #0f0c29);
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism Luxury Container */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Spacing Fix for Typewriter & Paragraph Text */
#typewriterText, .letter-body {
    white-space: pre-wrap !important;
    word-break: normal !important;
    word-wrap: break-word !important;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* Dynamic Magic NO Button Hover/Jump FX */
.btn-no-evasive {
    position: relative;
    transition: all 0.2s ease-out;
}

/* Brand Logo */
.brand-logo {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #ff758c, #ff7eb3, #a18cd1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 117, 140, 0.6));
}

/* Glowing Interactive Buttons */
.btn-glow-primary {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border: none;
    color: #ffffff;
    font-weight: 700;
    padding: 14px 38px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(255, 65, 108, 0.5);
    transition: all 0.3s ease;
}

.btn-glow-primary:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(255, 65, 108, 0.8);
    color: #ffffff;
}

.floating-heart {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    animation: floatUp 8s linear infinite;
}

@keyframes floatUp {
    0% { transform: translateY(100vh) scale(0.5); opacity: 0.8; }
    100% { transform: translateY(-10vh) scale(1.3); opacity: 0; }
}