@font-face {
    font-family: 'Angry';
    src: url('../Fonts/Angry.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geologica';
    src: url('../Fonts/Geologica.ttf') format('truetype');
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Geologica', sans-serif;
    background-image: url('../Image/back_status.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.status-main {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.status-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.back-link {
    margin-bottom: 24px;
}

.back-btn {
    font-family: 'Geologica', sans-serif;
    font-size: 0.9rem;
    color: #542DE0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.back-btn:hover {
    color: #3a1a9e;
    transform: translateX(-3px);
}

.status-title {
    font-family: 'Angry', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #542DE0;
    text-align: center;
    margin-bottom: 12px;
}

.status-subtitle {
    font-family: 'Geologica', sans-serif;
    font-size: 0.95rem;
    color: #666666;
    text-align: center;
    margin-bottom: 32px;
}

.status-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #333333;
}

.form-group input {
    font-family: 'Geologica', sans-serif;
    font-size: 0.95rem;
    padding: 12px 14px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    background: #f9f9f9;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #542DE0;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(84, 45, 224, 0.1);
}

.submit-btn {
    font-family: 'Angry', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px 28px;
    background: #FE5F1B;
    color: #ffffff;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.submit-btn:hover {
    background: #e04a0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(254, 95, 27, 0.3);
}

.result-card {
    margin-top: 32px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.result-title {
    font-family: 'Angry', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #FE5F1B;
    display: inline-block;
}

.result-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
}

.result-label {
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #555555;
    min-width: 140px;
}

.result-value {
    font-family: 'Geologica', sans-serif;
    font-size: 0.95rem;
    color: #222222;
    flex: 1;
    word-break: break-word;
}

.result-error {
    margin-top: 32px;
    padding: 20px;
    background: #fff5f5;
    border: 1px solid #dc3545;
    border-radius: 12px;
    color: #dc3545;
    font-family: 'Geologica', sans-serif;
    font-size: 0.95rem;
    text-align: center;
}

.result-placeholder {
    margin-top: 32px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px dashed #cccccc;
    text-align: center;
}

.result-placeholder h2 {
    font-family: 'Angry', sans-serif;
    font-size: 1.3rem;
    color: #888888;
    margin-bottom: 12px;
}

.result-placeholder p {
    font-family: 'Geologica', sans-serif;
    font-size: 0.9rem;
    color: #888888;
}

.example-text {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #aaa;
}

@media (max-width: 700px) {
    body {
        padding: 20px 15px;
    }
    
    .status-container {
        padding: 25px 20px;
    }
    
    .status-title {
        font-size: 1.5rem;
    }
    
    .status-subtitle {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }
    
    .result-card {
        padding: 18px;
    }
    
    .result-title {
        font-size: 1.2rem;
    }
    
    .result-row {
        flex-direction: column;
        gap: 4px;
    }
    
    .result-label {
        min-width: auto;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .status-title {
        font-size: 1.3rem;
    }
    
    .form-group input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .result-placeholder h2 {
        font-size: 1.1rem;
    }
}