* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IBM Plex Sans', sans-serif;
}

:root {
    --primary-color: #1764ff;
    --primary-light: #4d8bff;
    --primary-dark: #0040c1;
    --accent-color: #ff6b17;
    --text-color: #2c3e50;
    --bg-color: #f5f5f5;
}

body {
    background: linear-gradient(-45deg, #1764ff, #4e8df5, #0040c1, #23d5ab, #ff6b17, #ff4545);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.container {
    max-width: 800px;
    margin: 1rem auto;
    padding-top: 10px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(23, 100, 255, 0.2);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
    margin-bottom: 100px;
}

.hcontainer {
    max-width: 800px;
    margin: 1rem auto;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(23, 100, 255, 0.2);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
}
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6b17, #1764ff, #23d5ab, #ff4545);
    background-size: 300% 100%;
    animation: gradientBorder 6s linear infinite;
}

.hcontainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6b17, #1764ff, #23d5ab, #ff4545);
    background-size: 300% 100%;
    animation: gradientBorder 6s linear infinite;
}
@keyframes gradientBorder {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

.container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 23, 0.6) 0%, rgba(255, 107, 23, 0) 70%);
    animation: pulseLight 4s ease-in-out infinite;
    z-index: -1;
}
.hcontainer::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 23, 0.6) 0%, rgba(255, 107, 23, 0) 70%);
    animation: pulseLight 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseLight {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
    100% { transform: scale(1); opacity: 0.3; }
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    text-shadow: 0 2px 10px rgba(23, 100, 255, 0.2);
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b17, #1764ff, #23d5ab, #ff4545);
    border-radius: 3px;
    animation: gradientBorder 6s linear infinite;
    background-size: 300% 100%;
}

/* Google Form Link Styling */
.google-form-link {
    text-align: center;
    margin-bottom: 1.5rem;
    transform: translateY(10px);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.15s;
}

.google-form-link p {
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
}

.google-form-link a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.google-form-link a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
}

input[type="text"],
textarea,
select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(23, 100, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

input[type="text"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px #1764ff, 0 0 15px rgba(23, 100, 255, 0.5);
    transform: translateY(-3px);
}

input[type="text"]:hover,
textarea:hover,
select:hover {
    border-color: rgba(23, 100, 255, 0.5);
}

select {
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, #1764ff 50%),
                      linear-gradient(135deg, #1764ff 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px),
                         calc(100% - 15px) calc(1em + 2px);
    background-size: 5px 5px,
                    5px 5px;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2.5rem;
}

textarea {
    resize: none;
    min-height: 60px;
    max-height: 60px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark), #0064ff, #0040c1);
    background-size: 300% 100%;
    animation: gradientButton 6s ease infinite;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(23, 100, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease forwards, gradientButton 6s ease infinite;
    animation-delay: 0.6s, 0.6s;
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 1px;
}

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

.submit-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px) scale(1.01);
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(23, 100, 255, 0.5);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(23, 100, 255, 0.3);
}

.submit-btn::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    top: -50%;
    left: -100px;
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.submit-btn:hover::after {
    left: 110%;
}

.status-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.status-message.success {
    background-color: #d4edda;
    color: #155724;
    animation: popIn 0.4s ease forwards;
}

.status-message.error {
    background-color: #f8d7da;
    color: #721c24;
    animation: popIn 0.4s ease forwards;
}

@keyframes popIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Star Rating Styling */
.star-rating {
    display: flex;
    justify-content: space-between;
    gap: 10%;
    margin: 10px 0;
    padding: 10px;
    background: transparent;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.star-rating i {
    font-size: 40px;
    color: rgb(200, 210, 255);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    transform-origin: center;
    text-shadow: 0 0 1px #000, 0 0 2px #000;
}

.star-rating i.active {
    color: #ffd700;
    animation: starPulse 0.3s ease;
    text-shadow: 0 0 2px #000, 0 0 4px #000;
}

@keyframes starPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.star-rating i:hover {
    color: #ffc107;
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 2px #000, 0 0 4px #000;
}

.star-rating i:hover ~ i {
    color: rgba(200, 200, 200, 0.7);
    text-shadow: 0 0 1px #000, 0 0 2px #000;
}

.rating-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-color);
}

.min-rating, .max-rating {
    position: absolute;
    bottom: -20px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.min-rating {
    left: 0;
}

.max-rating {
    right: 0;
}

.star-container {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    width: 100%;
}

#clientNeeds {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

#clientNeeds:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(23, 100, 255, 0.2);
}

/* Footer Styling */
.footer {
    width: 100%;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 10px 0;
    z-index: 10;
    position: fixed;
    bottom: 0;
    left: 0;
    overflow: hidden;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 45%, transparent 50%);
    background-size: 200% 200%;
    animation: gradientWave 3s linear infinite;
    z-index: -1;
}

@keyframes gradientWave {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

.footer p {
    font-size: 14px;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    font-weight: 500;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 5px;
}

.social-link {
    color: white;
    font-size: 18px;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.social-link:hover::before {
    width: 100%;
}

/* Facebook brand color */
.social-link.facebook:hover {
    transform: translateY(-5px);
    color: #1877f2;
}

/* WhatsApp brand color */
.social-link.whatsapp:hover {
    transform: translateY(-5px);
    color: #25d366;
}

/* Instagram gradient color */
.social-link.instagram:hover i {
    transform: translateY(-5px) scale(1.2);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-link i {
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        background-size: 300% 300%; /* More dramatic gradient effect on mobile */
        animation: gradient 10s ease infinite; /* Faster animation on mobile */
    }

    .container {
        margin: 1rem;
        margin-bottom: 70px; /* Adjust bottom margin for footer on tablets */
        padding: 1.5rem;
        background-color: rgba(255, 255, 255, 0.75); /* More transparent on mobile */
    }

    .hcontainer {
        margin: 1rem;
        background-color: rgba(255, 255, 255, 0.75); /* More transparent on mobile */
    }

    h1 {
        font-size: 1.6rem;
    }

    input[type="text"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on mobile */
    }
    
    .star-rating i {
        font-size: 32px;
        text-shadow: 0 0 1px #000, 0 0 3px #000;
    }
    
    .footer {
        padding: 8px 0;
    }
    
    .social-link {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    body {
        background-size: 200% 200%; /* Even more dramatic gradient on small devices */
    }

    .container {
        margin: 0.7rem;
        margin-bottom: 60px; /* Adjust bottom margin for footer on mobile */
        padding: 1rem;
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.7); /* Even more transparent on small devices */
    }

    .hcontainer {
        margin: 0.7rem;
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.7); /* Even more transparent on small devices */
    }

    .form-group {
        margin-bottom: 1rem;
    }
    
    h1 {
        font-size: 1.4rem;
    }
    
    .star-rating i {
        font-size: 28px;
        text-shadow: 0 0 1px #000, 0 0 2px #000, 0 0 3px #000;
    }
    
    .submit-btn {
        padding: 0.8rem;
    }
    
    /* Increase particle visibility on mobile */
    .particle {
        filter: blur(0.5px);
    }
    
    .footer p {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    .social-links {
        gap: 15px;
        margin-bottom: 3px;
    }
}

/* Floating Particles Animation */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    pointer-events: none;
    animation: floatParticle 15s linear infinite;
    filter: blur(1px);
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-20vh) rotate(360deg);
        opacity: 0;
    }
}

.particle:nth-child(3n) {
    background: radial-gradient(circle at center, rgba(23, 100, 255, 0.7), rgba(23, 100, 255, 0.1));
    box-shadow: 0 0 15px rgba(23, 100, 255, 0.5);
}

.particle:nth-child(2n) {
    background: radial-gradient(circle at center, rgba(255, 107, 23, 0.6), rgba(255, 107, 23, 0.1));
    box-shadow: 0 0 15px rgba(255, 107, 23, 0.4);
}

.particle:nth-child(5n) {
    background: radial-gradient(circle at center, rgba(35, 213, 171, 0.6), rgba(35, 213, 171, 0.1));
    box-shadow: 0 0 15px rgba(35, 213, 171, 0.4);
}

.particle:nth-child(7n) {
    background: radial-gradient(circle at center, rgba(255, 69, 69, 0.6), rgba(255, 69, 69, 0.1));
    box-shadow: 0 0 15px rgba(255, 69, 69, 0.4);
}

/* Ensure the gradient background extends to all areas on mobile */
html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

/* Special fix for iOS devices */
@supports (-webkit-touch-callout: none) {
    body {
        /* iOS-specific gradient with fallback */
        background: -webkit-linear-gradient(-45deg, #1764ff, #4e8df5, #0040c1, #23d5ab);
        min-height: -webkit-fill-available;
    }
}

form:hover .submit-btn, 
.form-group:last-child + .submit-btn,
input:focus ~ .submit-btn,
textarea:focus ~ .submit-btn,
select:focus ~ .submit-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: gradientButton 6s ease infinite !important;
}

.logo-image {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.card-container {
    max-width: 380px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(23, 100, 255, 0.15);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-container:hover {
    transform: translateY(0) scale(1.02);
    box-shadow: 0 15px 35px rgba(23, 100, 255, 0.25);
}

.card-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b17, #1764ff, #23d5ab);
    background-size: 100% 300%;
    animation: gradientBorder 6s linear infinite;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(23, 100, 255, 0.2);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.flex-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1764ff, #23d5ab, #ff6b17, #ff4545);
    background-size: 300% 100%;
    animation: gradientBorder 6s linear infinite;
}

.flex-item {
    flex: 1 1 200px;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(23, 100, 255, 0.1);
    transition: all 0.3s ease;
}

.flex-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(23, 100, 255, 0.2);
}

/* Modal Container */
.modal-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1000px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    opacity: 0;
    animation: scaleIn 0.4s ease forwards;
    position: relative;
    overflow: hidden;
    z-index: 1000;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6b17, #1764ff, #23d5ab, #ff4545);
    background-size: 300% 100%;
    animation: gradientBorder 6s linear infinite;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(23, 100, 255, 0.2);
}

.modal-header h2 {
    color: var(--primary-color);
    margin-top: 10px;
    font-size: 1.5rem;
}

.success-icon {
    font-size: 50px;
    color: #28a745;
    margin-bottom: 15px;
    animation: scaleIn 0.5s ease forwards, pulse 2s infinite;
}

.error-icon {
    font-size: 50px;
    color: #dc3545;
    margin-bottom: 15px;
    animation: scaleIn 0.5s ease forwards, shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.modal-content {
    margin-bottom: 20px;
    text-align: center;
}

.sheet-link {
    margin-top: 10px;
    font-size: 0.9rem;
}

.sheet-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px dashed var(--primary-color);
    padding-bottom: 2px;
}

.sheet-link a:hover {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
}

.modal-footer {
    text-align: center;
}

.modal-footer .submit-btn {
    opacity: 1;
    transform: translateY(0);
    max-width: 300px;
    margin: 0 auto;
}

.error-container {
    border-top: 5px solid #dc3545;
}

.error-container::before {
    background: linear-gradient(90deg, #dc3545, #ff8a00, #dc3545);
}

.error-details {
    margin-top: 10px;
    padding: 10px;
    background-color: rgba(220, 53, 69, 0.1);
    border-left: 3px solid #dc3545;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #721c24;
    text-align: left;
    word-break: break-word;
    font-family: monospace;
}

.error-btn {
    background: linear-gradient(135deg, #dc3545, #c82333, #bd2130, #a71d2a);
    background-size: 300% 100%;
}

.error-btn:hover {
    background: linear-gradient(135deg, #a71d2a, #dc3545);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Info/Help styles */
.help-link {
    margin-top: 15px;
    font-size: 0.85rem;
}

.help-link a {
    color: #0c63e4;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px dashed #0c63e4;
}

.help-link a:hover {
    color: #0a58ca;
    border-bottom: 1px solid #0a58ca;
}

.info-container {
    border-top: 5px solid #0c63e4;
    max-width: 650px;
    max-height: 80vh;
    overflow-y: auto;
}

.info-container::before {
    background: linear-gradient(90deg, #0c63e4, #0dcaf0, #0c63e4);
}

.info-icon {
    font-size: 50px;
    color: #0c63e4;
    margin-bottom: 15px;
    animation: scaleIn 0.5s ease forwards;
}

.info-btn {
    background: linear-gradient(135deg, #0c63e4, #0a58ca, #084298, #052c65);
    background-size: 300% 100%;
}

.info-btn:hover {
    background: linear-gradient(135deg, #052c65, #0c63e4);
}

.instructions-details {
    text-align: left;
    padding: 10px;
}

.instructions-details h3 {
    margin-bottom: 15px;
    color: #0c63e4;
}

.instructions-details ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.instructions-details li {
    margin-bottom: 10px;
}

.instructions-details code {
    background-color: #f8f9fa;
    padding: 2px 4px;
    border-radius: 4px;
    font-family: monospace;
    color: #dc3545;
}

.code-block {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    font-family: monospace;
    color: #212529;
    font-size: 0.8rem;
    margin: 10px 0;
    overflow-x: auto;
    white-space: pre;
    line-height: 1.4;
    border-left: 3px solid #0c63e4;
}