/* Nukeworker Quiz Shared Styles */

/* Primary Button - Blue Gradient */
.btn-nukeworker {
    background: linear-gradient(135deg, #346699 0%, #2a5298 50%, #1e3c72 100%) !important;
    border: none !important;
    color: white !important;
    transition: all 0.3s ease !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
}

.btn-nukeworker:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    filter: brightness(1.1);
    color: #FFD700 !important;
}

/* Secondary Button - Clean background with gold hover */
.button-link {
    background: #f8f9fa !important;
    color: #1e3c72 !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 0.85em !important;
    transition: all 0.2s ease !important;
    border: 2px solid #e9ecef !important;
    text-decoration: none !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: inline-block;
}

.button-link:hover {
    background: #FFD700 !important;
    color: #1e3c72 !important;
    border-color: #FFD700 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none !important;
}

/* Premium Card Style */
.nw-card {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    overflow: hidden;
    background: white;
}

.nw-card-header {
    background: linear-gradient(135deg, #346699 0%, #1e3c72 100%) !important;
    color: white !important;
    padding: 15px 20px !important;
    font-weight: 700 !important;
    border: none !important;
}

/* Global Overrides for common quiz elements */
.btn-success, .btn-primary, .btn-warning, .btn-info {
    /* If we want to force everything to be blue gradient */
    /* background: linear-gradient(135deg, #346699 0%, #2a5298 50%, #1e3c72 100%) !important; */
    /* border: none !important; */
    transition: all 0.3s ease !important;
}

.btn-success:hover, .btn-primary:hover, .btn-warning:hover, .btn-info:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Utilities */
.nw-text-blue { color: #1e3c72 !important; }
.nw-bg-blue { background-color: #1e3c72 !important; }

/* Footer Link Styles */
footer a, .site-footer a {
    color: #FFD700 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

footer a:hover, .site-footer a:hover {
    text-decoration: underline !important;
    filter: brightness(1.2) !important;
}

/* Modern Quiz Footer Card - Changed from fixed to relative to stay below content */
.quiz-footer-card {
    position: relative !important;
    margin: 30px auto 20px auto !important;
    width: fit-content !important;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(8px);
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(30, 60, 114, 0.15) !important;
    padding: 15px 25px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-footer-card:hover {
    box-shadow: 0 12px 40px rgba(30, 60, 114, 0.25) !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 768px) {
    .quiz-footer-card {
        margin: 20px 0 0 0 !important;
        border-radius: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px 10px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    }
}
