:root {
    --primary: #bef264;
    --secondary: #f472b6;
    --accent: #22d3ee;
    --bg: #0c0d12;
}

/* ===============================
   BASE
================================ */

body {
    background-color: var(--bg);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand {
    font-family: 'Space Grotesk', sans-serif;
}

/* ===============================
   BACKGROUND
================================ */

.bg-mesh {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 10% 10%, #1a2e05 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, #2e051a 0%, transparent 40%);
    z-index: -1;
}

/* ===============================
   CARDS
================================ */

.bento-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px -20px rgba(190, 242, 100, 0.25);
}

/* ===============================
   BUTTONS
================================ */

.btn-playful {
    background: var(--primary);
    color: #000;
    border-radius: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0px 8px 0px #7ca633;
}

.btn-playful:hover {
    transform: translateY(2px);
    box-shadow: 0px 4px 0px #7ca633;
    background: #d9ff96;
}

/* ===============================
   TEXT
================================ */

.text-glow {
    text-shadow: 0 0 20px rgba(190, 242, 100, 0.5);
}

/* ===============================
   FLOATING BADGE
================================ */

.floating {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===============================
   DETAILS / ACCORDION
================================ */

details > summary {
    list-style: none;
    outline: none;
    cursor: pointer;
}

details > summary::-webkit-details-marker {
    display: none;
}

/* ===============================
   SCROLLBAR
================================ */

.no-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* ===============================
   FORM
================================ */

.form-input {
    background: rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-weight: 800;
}

.form-input:focus {
    border-color: #000;
}
