/* CSS Reset and Basic Setup */
:root {
    --bg-color: #121212;
    --primary-color: #FFFFFF;
    --secondary-color: #a0a0a0;
    --accent-color: #9333ea; /* Changed to Purple */
    --surface-color: rgba(30, 30, 30, 0.5); /* Adjusted for glassmorphism */
    --border-color: rgba(255, 255, 255, 0.15); /* Adjusted for glassmorphism */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Shapes for Glassmorphism Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 25%, rgba(147, 51, 234, 0.2), transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(147, 51, 234, 0.15), transparent 40%);
    filter: blur(100px);
    z-index: -1;
}

/* Custom Cursor - Note: This might be better in a separate JS file if it gets complex */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s, transform 0.3s, width 0.3s, height 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    background-color: rgba(147, 51, 234, 0.1);
}

.cursor-hover {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-outline {
        display: none;
    }
    body {
        cursor: auto;
    }
}
