:root {
    --primary-black: #050505;
    --primary-white: #ffffff;
    --accent-color: #00f2ff; /* Cyan */
    --secondary-accent: #7000ff; /* Electric Purple */
    --tertiary-accent: #ffd700; /* Gold */
    --text-color: #a0a0a0;
    --heading-color: #ffffff;
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --gradient-1: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
    --gradient-2: linear-gradient(45deg, #7000ff 0%, #ff0055 100%);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-theme {
    color: var(--text-color) !important;
}

/* Overriding Bootstrap's default text-muted for better readability in dark mode */
.text-muted {
    color: #a0aab2 !important;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    /* cursor: none; Removed global hide */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

/* Custom Cursor - Desktop Only */
@media (min-width: 992px) {
    body, a {
        cursor: none; /* Hide default cursor only on desktop */
    }

    .cursor-dot,
    .cursor-outline {
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none;
        display: block;
    }

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

    .cursor-outline {
        width: 40px;
        height: 40px;
        border: 2px solid var(--accent-color);
        transition: width 0.2s, height 0.2s, background-color 0.2s;
    }
}

/* Hide custom cursor on mobile/tablet */
@media (max-width: 991.98px) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

/* General Styles */
a {
    text-decoration: none;
    color: inherit;
    /* cursor: none; Removed global hide */
}

.btn-custom {
    background: rgba(255, 255, 255, 0.05);
    border: var(--glass-border);
    color: var(--primary-white);
    padding: 14px 40px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-custom:hover {
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
}

.btn-custom:hover::before {
    opacity: 1;
}

.btn-gold {
    background: var(--tertiary-accent);
    border: none;
    color: #000;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--card-bg);
    border: 1px solid var(--bg-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}
