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

body {
    background-color: #0b0b0e;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 800px;
    background: #121218;
    border: 1px solid #2a2a3a;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(186, 85, 211, 0.15);
    text-align: center;
}

.status-badge {
    display: inline-block;
    background: #1e3a1e;
    color: #4caf50;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

h1 {
    font-size: 3rem;
    color: #ff007f;
    text-shadow: 0 0 15px rgba(255, 0, 127, 0.6);
    letter-spacing: 2px;
}

.subtitle {
    color: #8a8a9e;
    margin-top: 5px;
    margin-bottom: 30px;
}

.mirror-zone {
    margin: 30px 0;
}

.avatar-box {
    width: 100%;
    height: 200px;
    border: 2px dashed #44445c;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    background: #181822;
}

.avatar-placeholder {
    color: #666680;
    font-weight: bold;
}

.btn {
    background: linear-gradient(45deg, #ff007f, #7b2cbf);
    border: none;
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 127, 0.4);
}

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

.card {
    background: #1a1a24;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #2c2c3e;
    text-align: left;
}

.card h3 {
    color: #00d4ff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.card p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.4;
}

.counter-section {
    margin: 30px 0;
    padding: 20px;
    background: #0f0f15;
    border-radius: 10px;
}

#timer {
    font-family: monospace;
    font-size: 2.5rem;
    color: #00ffcc;
    margin-top: 10px;
}

.btn-danger {
    background: #d32f2f;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.btn-danger:hover {
    background: #f44336;
}

footer {
    margin-top: 30px;
    border-top: 1px solid #222230;
    padding-top: 20px;
}

.copyright {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #555566;
}