:root {
    --accent-color: #A993D6; /* Pastel purple */
    --dark-bg: #0d0d0d;
    --dark-text: #f0f0f0;
    --dark-card: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--dark-text);
    overflow-x: hidden;
    transition: background-color 0.5s, color 0.5s;
    cursor: none; /* This hides the default cursor */
}

/* Glassmorphism Effect */
.glass-card {
    background-color: var(--dark-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    transform-style: preserve-3d;
}

.glass-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Neon-like glow button */
.btn-neon {
    background-color: var(--accent-color);
    color: black;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-neon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-neon:hover::after {
    left: 100%;
}

/* Floating shapes animation */
.floating-shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(50px);
}

/* Custom Cursor */
.custom-cursor {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, transform 0.1s;
    z-index: 9999;
}

.custom-cursor-active {
    width: 40px;
    height: 40px;
    background-color: rgba(169, 147, 214, 0.3);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.page-hidden {
    display: none;
}