/* Base Styles */
body {
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 10px;
    color: var(--text-color);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Typography */
.gradient-text {
    font-size: calc(2vw + 2rem);
    line-height: 1.2;
    margin: 0;
    font-weight: 800;
    background: linear-gradient(45deg, #FF3366, #FF6B6B, #4481eb, #04befe, #4FACFE);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 8s ease infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Form Controls Base */
.form-control, 
.form-select,
textarea {
    background-color: var(--container-bg);
    border-color: var(--border-color);
    color: var(--text-color) !important;
}

.form-control::placeholder,
textarea::placeholder {
    color: var(--text-color);
    opacity: 0.7;
}