:root {
    --color-secondary: #3d5afe;
    --color-primary: #188b52;
    --color-tertiary: #f3f3f3;
    --btn-secondary-color: #3d5afe;
    --btn-secondary-color-active: #3d5afe;
    --btn-secondary-color-focus: #3d5afe;
    --btn-secondary-color-focus-visible: #3d5afe;
}

.w-50 { width: 50% !important }
.w-100 { width: 100% !important }
.h-50 { height: 50% !important }
.h-100 { height: 100% !important }

.block { display: block }
.flex { display: flex;     gap: 1em;}
.flex-col { flex-direction: column }
.flex-row { flex-direction: row }
.flex-1 { flex: 1 1 auto }
.flex-wrap { flex-wrap: wrap }
.flex-nowrap { flex-wrap: nowrap }

.inline-flex { display: inline-flex }
.justify-between { justify-content: space-between;     align-items: center;}
.items-center { align-items: center }
.vertical-align-middle { vertical-align: middle }
.text-uppercase { text-transform: uppercase }

.card {
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 10px;
	font-size: 16px;
    font-weight: 700;
}

/* Albatross Congratulation Section */
.albatross-congratulation {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    border-radius: 16px;
    padding: 32px 24px;
    margin: 24px 0;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.5);
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.5s ease-out;
}

.albatross-congratulation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.congratulation-content {
    position: relative;
    z-index: 2;
}

.congratulation-icon {
    font-size: 3rem;
    color: #b8860b;
    margin-bottom: 16px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.congratulation-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #b8860b;
    margin: 0 0 12px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.congratulation-message {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4513;
    margin: 0 0 16px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.congratulation-description {
    font-size: 1rem;
    color: #8b4513;
    margin: 0 0 24px 0;
    line-height: 1.5;
    opacity: 0.9;
}

.congratulation-actions {
    margin-top: 24px;
}

.congratulation-actions .btn {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.congratulation-actions .btn:hover {
    background: linear-gradient(135deg, #a0522d 0%, #8b4513 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.congratulation-actions .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

/* Responsive Design for Albatross */
@media (max-width: 768px) {
    .albatross-congratulation {
        padding: 24px 16px;
        margin: 16px 0;
    }

    .congratulation-icon {
        font-size: 2.5rem;
    }

    .congratulation-title {
        font-size: 1.5rem;
    }

    .congratulation-message {
        font-size: 1.25rem;
    }

    .congratulation-description {
        font-size: 0.875rem;
    }

    .congratulation-actions .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .albatross-congratulation {
        padding: 20px 12px;
        margin: 12px 0;
    }

    .congratulation-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .congratulation-title {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .congratulation-message {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }

    .congratulation-description {
        font-size: 0.8125rem;
        margin-bottom: 20px;
    }

    .congratulation-actions {
        margin-top: 20px;
    }

    .congratulation-actions .btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.875rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .albatross-congratulation::before {
        animation: none;
    }

    .congratulation-icon {
        animation: none;
    }

    .albatross-congratulation {
        transition: none;
    }

    .congratulation-actions .btn {
        transition: none;
    }

    .congratulation-actions .btn:hover {
        transform: none;
    }
}