/* Full Width Banner Component */
.fifa-banner-wrapper {
    width: 100vw;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #F9B909;
}

.fifa-banner-link {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.fifa-banner-video,
.fifa-banner-img,
.fifa-banner-img-small {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

/* FIFA Goal Box Component */
.fifa-goal-box {
    background-color: #F4F4F4;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.fifa-goal-box h2 {
    margin-top: 0;
}

.fifa-goal-box p:last-child {
    margin-bottom: 0;
}

.fifa-goal-box .contest-btn {
    display: inline-block;
    padding: 20px 40px !important;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Typography Utilities */
.font-weight-bold {
    font-weight: bold;
}

/* Notification Modal Styles */
.notification-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-width: 400px;
    text-align: center;
    font-family: inherit;
}

.notification-modal h3 {
    margin-top: 0;
    color: #333;
}

.notification-modal p {
    color: #666;
    margin: 15px 0;
}

.notification-modal-buttons {
    margin-top: 20px;
}

.notification-modal .btn-primary {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.notification-modal .btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    z-index: 1000;
    max-width: 300px;
    animation: slideIn 0.3s ease-out;
}

.toast-notification strong {
    display: block;
    margin-bottom: 5px;
}

.toast-notification .close-btn {
    float: right;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
    line-height: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
