body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100vh;
    width: 100vw;
    background-color: #000;
}

.shimmer-button {
    position: relative;
    overflow: hidden;
    background: #000000;
    color: white;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.shimmer-button::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(34, 197, 94, 0.3),
        transparent
    );
    animation: shimmer 3s infinite linear;
    transform: skewX(-20deg);
}

@keyframes shimmer {
    0% {
        left: -100px;
    }
    100% {
        left: 100%;
    }
}

/* Spline Container Styles */
#spline-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

#spline-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Toast notifications */
@keyframes fade-in {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Loader animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Form transitions */
.form-transition {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-transition.exit {
    opacity: 0;
    transform: translateY(-20px);
}

.form-transition.enter {
    opacity: 0;
    transform: translateY(20px);
}

.form-transition.active {
    opacity: 1;
    transform: translateY(0);
}

/* Improve form focus states */
input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.5);
}

/* Create backdrop effect for form container */
.backdrop-blur-form {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Remove scrollbar for clean look */
::-webkit-scrollbar {
    display: none;
}

/* Disable buttons */
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Toast styles */
.toast {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-success {
    background: #059669;
    color: white;
}

.toast-error {
    background: #dc2626;
    color: white;
}

.toast-info {
    background: #3b82f6;
    color: white;
}

/* Fallback gradient animation */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-gradient-slow {
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
}