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

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

.container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    max-width: 800px;
    width: 90%;
    margin: 2rem;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
}

main h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 0.5rem;
}

.service-name {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.info-item .label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item .value {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    word-break: break-all;
}

.info-item .value a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.info-item .value a:hover {
    border-bottom-color: #667eea;
}

.api-links {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.api-links h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.api-links ul {
    list-style: none;
}

.api-links li {
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    background: white;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.api-links li:hover {
    transform: translateX(5px);
}

.api-links a {
    color: #667eea;
    text-decoration: none;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
}

.api-links a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 2rem;
        margin: 1rem;
    }

    main h1 {
        font-size: 2rem;
    }

    .service-name {
        font-size: 1.5rem;
    }

    .logo {
        max-width: 250px;
    }

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

@media (max-width: 480px) {
    main h1 {
        font-size: 1.8rem;
    }

    .service-name {
        font-size: 1.3rem;
    }

    .container {
        padding: 1.5rem;
    }
}
