/* Custom styles */
.calculator-input {
    background: rgba(123, 74, 226, 0.1);
    border: 1px solid rgba(123, 74, 226, 0.3);
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: white;
    width: 100%;
}

.calculator-input:focus {
    outline: none;
    border-color: #7B4AE2;
    box-shadow: 0 0 0 2px rgba(123, 74, 226, 0.2);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7B4AE2;
    cursor: pointer;
    transition: all 0.2s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0A0F;
}
/* Honeycomb background for calculator */
#calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(white 0.5px, transparent 0.5px),
        radial-gradient(white 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.1;
    z-index: -1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A23;
}

::-webkit-scrollbar-thumb {
    background: #FF9B1A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E68C17;
}

/* Animation for floating elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Glow effect */
.glow {
    text-shadow: 0 0 10px rgba(123, 74, 226, 0.7);
}

/* Particle animation */
@keyframes particle-float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

.align-right {
    margin-left: auto;
    margin-right: 0;
}