/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    color: #1e293b;
    font-family: 'Outfit', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
}

/* Main wrapper for animations */
.renewal-wrapper {
    width: 100%;
    max-width: 640px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Container styling */
.renewal-container {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
}

/* Status indicator badge */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f1f5f9;
    padding: 6px 14px;
    border-radius: 9999px;
    margin-bottom: 32px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #0ea5e9;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: inherit;
    animation: pulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

.indicator-text {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Typography */
.company-name {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin-bottom: 12px;
}

.status-message {
    font-size: 20px;
    font-weight: 400;
    color: #475569;
    letter-spacing: -0.01em;
    margin-bottom: 40px;
}

/* Divider line */
.divider {
    width: 48px;
    height: 2px;
    background-color: #e2e8f0;
    margin: 0 auto 40px auto;
}

/* Contact information list */
.info-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
    background-color: #fafafa;
    border: 1px solid #f0f0f0;
    padding: 24px 28px;
    border-radius: 16px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    font-size: 14px;
}

.info-item .label {
    font-weight: 500;
    color: #64748b;
    min-width: 60px;
    flex-shrink: 0;
    position: relative;
}

.info-item .label::after {
    content: ':';
    position: absolute;
    right: 12px;
}

.info-item .value {
    color: #334155;
    word-break: keep-all;
}

.info-item .value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.info-item .value a:hover {
    color: #0ea5e9;
    border-bottom-color: #0ea5e9;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .company-name {
        font-size: 28px;
    }
    
    .status-message {
        font-size: 17px;
        margin-bottom: 32px;
    }
    
    .divider {
        margin-bottom: 32px;
    }
    
    .info-footer {
        padding: 20px;
        gap: 12px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 2px;
    }
    
    .info-item .label::after {
        content: '';
    }
}
