/* ============================================
   GOLDEN THEME - Premium Admission Notice Card
   with adm- prefixed classes
   ============================================ */

/* --- Card Container --- */
.adm-notice {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- Card Header - Gold Gradient --- */
.adm-notice-header {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 30%, #f5d76e 60%, #d4af37 85%, #b8860b 100%);
    padding: 1.25rem 1.75rem;
    border-bottom: 3px solid #a67c00;
    position: relative;
}

/* Gold shimmer overlay on header */
.adm-notice-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: adm-shimmer 4s infinite;
}

@keyframes adm-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.adm-notice-title {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
    color: #3d2b00;
    text-shadow: 0 1px 2px rgba(255, 215, 0, 0.3);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.adm-notice-icon {
    font-size: 1.75rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

/* --- Corner Decorative Accent --- */
.adm-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(225deg, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    border-radius: 0 16px 0 80px;
    pointer-events: none;
}

/* --- Card Body --- */
.adm-notice-body {
    padding: 1.75rem 2rem;
}

/* --- Lead Text --- */
.adm-notice-lead {
    font-size: 1rem;
    color: #4a3a1a;
    line-height: 1.6;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

/* --- Instruction List --- */
.adm-instruction-list {
    padding: 0;
    margin: 0;
}

.adm-instruction-item {
    background: linear-gradient(135deg, #fdfaf0, #faf6e8);
    padding: 0.85rem 1rem 0.85rem 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #d4af37;
    box-shadow: 0 1px 3px rgba(212, 175, 55, 0.08);
}

.adm-instruction-item:hover {
    background: linear-gradient(135deg, #fcf6e0, #f8efd0);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

/* Highlight Item - Step 5 with extra gold emphasis */
.adm-instruction-highlight {
    background: linear-gradient(135deg, #fcf3d4, #f8eabc) !important;
    border-left-color: #b8860b !important;
    border-left-width: 5px !important;
}

.adm-instruction-highlight:hover {
    background: linear-gradient(135deg, #faeac0, #f5e0a8) !important;
}

/* Badge Numbers - Gold Circle */
.adm-instruction-badge {
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    background: linear-gradient(145deg, #b8860b, #d4af37, #f5d76e);
    color: #3d2b00;
    border: 2px solid #a67c00;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
    flex-shrink: 0;
}

/* Instruction Text */
.adm-instruction-text {
    color: #3d2b00;
    line-height: 1.5;
}

.adm-instruction-strong {
    color: #2a1e00;
}

/* Nested List Styling */
.adm-instruction-sublist {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.adm-instruction-subitem {
    background: transparent !important;
    padding: 0.35rem 0 0.35rem 1.75rem;
    border-left: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    position: relative;
    font-weight: 400;
    color: #4a3a1a;
    transition: none !important;
    transform: none !important;
}

.adm-instruction-subitem::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0.35rem;
    color: #d4af37;
    font-size: 0.9rem;
}

.adm-instruction-subitem:hover {
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

/* --- Download Button - Gold Theme --- */
.adm-download-btn {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 40%, #f5d76e 70%, #d4af37 100%);
    color: #3d2b00;
    border: 2px solid #a67c00;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
    text-shadow: 0 1px 2px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Button Shimmer */
.adm-download-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    transform: rotate(25deg);
    transition: all 0.6s ease;
}

.adm-download-btn:hover::before {
    left: 60%;
}

.adm-download-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #a67c00 0%, #c9a020 40%, #e8c84a 70%, #c9a020 100%);
    color: #2a1e00;
    border-color: #8b6900;
}

.adm-download-btn:active {
    transform: translateY(0px) scale(0.98);
}

.adm-download-icon,
.adm-download-arrow {
    color: #3d2b00;
}

/* --- Download Section --- */
.adm-download-section {
    border-top: 2px solid rgba(212, 175, 55, 0.25) !important;
}

.adm-download-info {
    color: #8b7a5a !important;
}

.adm-info-icon {
    color: #d4af37;
}

/* --- Loading Elements --- */
.adm-loader {
    color: #d4af37;
}

.adm-label {
    color: #4a3a1a;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .adm-notice-header {
        padding: 1rem 1.25rem;
    }
    
    .adm-notice-title {
        font-size: 1rem;
        letter-spacing: 0.3px;
    }
    
    .adm-notice-body {
        padding: 1.25rem;
    }
    
    .adm-download-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .adm-instruction-item {
        padding: 0.6rem 0.75rem 0.6rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .adm-instruction-badge {
        min-width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .adm-corner-accent {
        width: 50px;
        height: 50px;
    }
    
    .adm-notice-lead {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .adm-notice-title {
        font-size: 0.85rem;
    }
    
    .adm-notice-icon {
        font-size: 1.25rem;
    }
    
    .adm-instruction-subitem {
        font-size: 0.85rem;
        padding-left: 1.5rem;
    }
}

/* --- Print Styles --- */
@media print {
    .adm-notice {
        box-shadow: none !important;
        border: 2px solid #b8860b;
    }
    
    .adm-notice-header {
        background: #d4af37 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .adm-download-btn {
        background: #d4af37 !important;
        box-shadow: none !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .adm-instruction-item {
        background: #fdfaf0 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .adm-corner-accent {
        display: none;
    }
}

/* --- Gold Accent Glow (Optional) --- */
@keyframes adm-goldPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.15); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.25); }
}

.adm-notice:hover {
    animation: adm-goldPulse 3s ease-in-out infinite;
}