:root {
    --bg-dark: #030305;
    --accent-primary: #fb923c;
    --red-bright: #fb923c;
    --red-strong: #ea580c;
    --red-deep: #c2410c;
    --red-maroon: #9a3412;
    --red-darkest: #7c2d12;
    --glow-core: rgba(255, 255, 255, 0.8);
    --glow-color: rgba(251, 146, 60, 0.35);
    --glow-color-strong: rgba(251, 146, 60, 0.55);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: #e5e5e5;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    cursor: none !important;
}

/* Force hide system cursor on all interactive elements */
a, button, input, select, textarea, [role="button"], .pricing-package, .cursor-pointer {
    cursor: none !important;
}

button:focus,
button:active,
a:focus,
a:active {
    outline: none !important;
}

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

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Grid Background Pattern */
.bg-grid {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* Ambient Orange Glow Animation */
@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}
.animate-glow {
    animation: pulse-glow 4s ease-in-out infinite;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.8s ease-out forwards;
}

.animate-fade-in-delay-1 {
    animation: fade-in 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fade-in 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.animate-fade-in-delay-3 {
    animation: fade-in 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

/* Pricing Package Selection Logic */
.pricing-package {
    transition: all 0.3s ease;
}

.pricing-package .glow-effect {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-package.pricing-selected {
    border-color: rgba(251, 146, 60, 0.3);
    box-shadow: 0 0 30px rgba(251, 146, 60, 0.15);
}

.pricing-package.pricing-selected .glow-effect {
    opacity: 1;
}

.pricing-package:hover .glow-effect {
    opacity: 0.5;
}
