/* ===== STATUS PAGES STYLES (404, Agent Sudah Terdaftar, dll) ===== */

.site-footer {
    display: none;
}

.footer-bottom-center {
    display: none;
}

/* Status Page Container */
.papikost-status-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.papikost-status-container {
    max-width: 600px;
    width: 100%;
    padding: 0 40px;
    text-align: center;
    animation: papikostStatusFadeIn 0.8s ease-out;
}

@keyframes papikostStatusFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Status Page Mascot */
.papikost-status-mascot {
    margin-bottom: 40px;
}

.papikost-status-mascot img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}

/* Status Page Typography */
.papikost-status-title {
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.papikost-status-subtitle {
    color: #495057;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.papikost-status-404-number {
    color: #1a1a1a;
    font-size: 72px;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1;
    letter-spacing: -2px;
}

/* Status Page Buttons */
.papikost-status-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-direction: column; /* Default mobile-first */
}

.papikost-status-btn {
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    text-transform: none;
    letter-spacing: normal;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-width: 200px;
    width: 200px;
    text-align: center;
    white-space: nowrap;
}

.papikost-status-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.papikost-status-btn:active {
    transform: translateY(0);
}

.papikost-status-btn.primary {
    background: var(--blue);
    color: #ffffff;
}

.papikost-status-btn.primary:hover {
    background: #155a94;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(27, 117, 187, 0.25);
}

.papikost-status-btn.primary:active {
    box-shadow: 0 2px 8px rgba(27, 117, 187, 0.15);
}

.papikost-status-btn.secondary {
    background: transparent;
    color: #6c757d;
    border-color: #6c757d;
}

.papikost-status-btn.secondary:hover {
    background: #6c757d;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.25);
}

.papikost-status-btn.secondary:active {
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.15);
}

.papikost-status-btn.yellow {
    background: var(--yellow);
    color: #000000;
}

.papikost-status-btn.yellow:hover {
    background: #f0e700;
    color: #000000;
    box-shadow: 0 6px 20px rgba(255, 241, 0, 0.25);
    border-color: #e6d600;
}

.papikost-status-btn.yellow:active {
    box-shadow: 0 2px 8px rgba(255, 241, 0, 0.15);
}

/* Responsive Design */
@media (min-width: 768px) {
    .papikost-status-container {
        display: flex;
        align-items: center;
        text-align: left;
        max-width: 1000px;
        gap: 60px;
    }
    
    .papikost-status-mascot {
        flex: 0 0 45%;
        margin-bottom: 0;
    }
    
    .papikost-status-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .papikost-status-title {
        font-size: 36px;
        text-align: left;
        line-height: 1.3;
    }
    
    .papikost-status-subtitle {
        text-align: left;
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .papikost-status-content .papikost-status-buttons {
        display: flex;
        justify-content: flex-start;
        flex-direction: row !important;
        gap: 15px !important;
        margin-top: 30px;
        flex-wrap: nowrap;
    }
    
    .papikost-status-btn {
        min-width: 160px;
        width: auto;
        flex: 0 0 auto;
        padding: 14px 20px;
    }
}

@media (max-width: 767px) {
    .papikost-status-container {
        padding: 0 20px;
    }
    
    .papikost-status-mascot img {
        max-width: 220px;
    }
    
    .papikost-status-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .papikost-status-404-number {
        font-size: 52px;
    }
    
    .papikost-status-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .papikost-status-btn {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 200px;
        width: 200px;
    }
}

@media (max-width: 480px) {
    .papikost-status-mascot img {
        max-width: 180px;
    }
    
    .papikost-status-title {
        font-size: 22px;
    }
    
    .papikost-status-404-number {
        font-size: 44px;
    }
    
    .papikost-status-subtitle {
        font-size: 14px;
    }
    
    .papikost-status-page {
        min-height: 100vh;
        padding: 10px 0;
    }
}

/* ===== END STATUS PAGES STYLES ===== */