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

:root {
    /* Common */
    --primary-purple: #9333ea;
    --purple-light: #a855f7;
    --purple-lighter: #c084fc;

    /* Dark Mode Defaults */
    --bg-color: #0f0f0f;
    --card-bg: #1a1a1a;
    --border-color: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --header-bg: rgba(15, 15, 15, 0.5);
}

/* Light Mode Variables */
[data-theme="light"] {
    --bg-color: #cdcdcd;
    --hero-purple-color: #52078e;
    --card-bg: rgb(214, 210, 210);
    --border-color: #e0e0e0;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --header-bg: rgba(255, 255, 255, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 400;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

/* custom mouse cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    will-change: left, top;
}

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

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    transition: left 0.1s ease-out, top 0.1s ease-out, width 0.2s, height 0.2s;
}

[data-theme="light"] .cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--hero-purple-color);
}

[data-theme="light"] .cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--hero-purple-color);
    transition: left 0.1s ease-out, top 0.1s ease-out, width 0.2s, height 0.2s;
}