@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;400;600;700;800&display=swap');

body {
    font-family: 'Libre Franklin', sans-serif;
    background-color: #0f172a;
    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),
        radial-gradient(circle at 15% 50%, rgba(0, 255, 135, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(57, 255, 20, 0.08), transparent 25%);
    background-size: 40px 40px, 40px 40px, auto, auto;
    background-attachment: fixed;
}

.gradient-text {
    background: linear-gradient(135deg, #00ff87 0%, #39ff14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, #00ff87 0%, #39ff14 100%);
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 135, 0.2);
}

.glow-effect {
    box-shadow: 0 0 20px rgba(0, 255, 135, 0.3);
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 255, 135, 0.3));
/* Success message animations */
#success-message {
    animation: slideInUp 0.6s ease-out;
}

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

#success-message .fa-check {
    animation: checkmark 0.8s ease-out 0.3s both;
}

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

/* Button loading animation */
#submit-btn.loading {
    pointer-events: none;
}

#submit-btn.loading .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
}

/* Footballer image positioning */
.footballer-image {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 300px;
    height: auto;
    object-fit: contain;
    z-index: 1;
    opacity: 0.9;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.5));
}
/* Flipped footballer image positioning */
.footballer-image.flipped {
    left: auto;
    right: 0;
    transform: scaleX(-1);
}
/* Responsive hiding of footballer images on mobile */
@media (max-width: 768px) {
    .footballer-image {
        display: none;
    }
}