:root {
    --bg-gradient: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    --card-gradient: linear-gradient(to bottom right, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
    --primary-text: #2c3e50;
    --accent-purple: #9b59b6;
    --accent-pink: #ff9ff3;
    --accent-green: #55efc4;
}

body {
    font-family: 'Fredoka', 'Outfit', sans-serif; /* Fredoka is childish/rounded */
    background: #f3e5f5;
    background: radial-gradient(circle at 10% 20%, rgb(239, 246, 249) 0%, rgb(206, 239, 253) 90%);
    overflow-x: hidden;
    color: var(--primary-text);
}

/* Floating Animation */
.floating {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}
.navbar-brand span {
    background: linear-gradient(to right, #9b59b6, #ff9ff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Gradients for Buttons */
.btn-grad {
    background-image: linear-gradient(to right, #8e44ad 0%, #ff9ff3 51%, #8e44ad 100%);
    padding: 10px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 50px;
    border: none;
    font-weight: bold;
    box-shadow: 0 0 20px #eee;
}
.btn-grad:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

/* Cards */
.mag-card {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 2px solid transparent;
}
.mag-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-pink);
    box-shadow: 0 15px 35px rgba(155, 89, 182, 0.2);
}

.childish-shape {
    position: absolute;
    z-index: -1;
    opacity: 0.6;
}