* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
    padding: 40px;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.keenpals-logo {
    max-width: 200px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 500;
}

.status-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.status-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #cbd5e0;
    position: relative;
    flex-shrink: 0;
}

.status-indicator.active {
    background: #48bb78;
    box-shadow: 0 0 10px rgba(72, 187, 120, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.status-content h2 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 5px;
}

.status-text {
    color: #4a5568;
    font-weight: 500;
}

.info-section {
    margin-bottom: 40px;
}

.info-section h3,
.endpoints-section h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #f7fafc;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.info-label {
    font-weight: 600;
    color: #4a5568;
}

.info-value {
    color: #2d3748;
    font-weight: 500;
}

.endpoints-section {
    margin-bottom: 40px;
}

.endpoints-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.endpoint-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f7fafc;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.endpoint-item:hover {
    background: #edf2f7;
}

.method {
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    min-width: 60px;
    text-align: center;
}

.method.get {
    background: #48bb78;
    color: white;
}

.endpoint-path {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #2d3748;
    flex: 1;
}

.endpoint-desc {
    color: #718096;
    font-size: 0.9rem;
}

.footer {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
    color: #718096;
}

.footer p {
    margin-bottom: 5px;
}

.footer-sub {
    font-size: 0.9rem;
    color: #a0aec0;
}

@media (max-width: 768px) {
    .container {
        padding: 25px;
    }

    .title {
        font-size: 2rem;
    }

    .keenpals-logo {
        max-width: 150px;
        max-height: 90px;
    }

    .status-container {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

