* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(135deg, #fff7ed, #fff, #fef3c7);
    color: #111;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 18px;
    width: 90%;
    max-width: 650px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
}

.logo img {
    width: 140px;
    margin-bottom: 20px;
}

h1 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #111827;
}

p {
    font-size: 15px;
    color: #374151;
    margin-bottom: 25px;
    line-height: 1.6;
}

.status {
    background: #f59e0b;
    color: #111;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    margin-bottom: 20px;
}

.features {
    text-align: left;
    margin-bottom: 20px;
}

.features h3 {
    color: #b45309;
    margin-bottom: 10px;
}

.features ul {
    list-style: none;
}

.features ul li {
    padding: 6px 0;
    color: #374151;
}

.contact {
    margin-top: 20px;
    font-size: 14px;
    color: #4b5563;
}

.dev {
    margin-top: 15px;
    font-size: 13px;
    color: #6b7280;
}

footer {
    margin-top: 25px;
    font-size: 12px;
    color: #9ca3af;
}
