.hero {
    text-align: center;
    padding: 3rem 1rem 2rem;
    background: transparent;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.hero p {
    color: #a1a1aa;
    font-size: 1.1rem;
}

.main-container {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.toast {
    visibility: hidden;
    min-width: 280px;
    background-color: #ef4444;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    padding: 14px 20px;
    position: fixed;
    z-index: 10000;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.3);
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toast.show {
    visibility: visible;
    opacity: 1;
}

.availability-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
}

.availability-form input {
    flex-grow: 1;
    min-width: 240px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    background: #111112;
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.availability-form input:focus {
    border-color: #00a2ff;
}

.availability-form button {
    min-width: 132px;
    padding: 0.75rem 1.35rem;
    background: #0072ce;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.availability-form button:hover:not(:disabled) {
    background: #0082e6;
    box-shadow: 0 4px 12px rgba(0, 114, 206, 0.3);
}

.availability-form button:disabled {
    cursor: not-allowed;
    background: #1f2937;
    color: #a5b4c8;
    border-color: #334155;
    box-shadow: none;
}

.availability-form button[data-state="blocked"],
.availability-form button[data-state="input"],
.availability-form button[data-state="security"] {
    background: #1f2937;
    color: #a5b4c8;
    border-color: #334155;
}

.availability-form button[data-state="cooldown"] {
    background: #27272a;
    color: #d4d4d8;
    border-color: #3f3f46;
}

.result-card {
    background: #111112;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    padding: 2rem;
    width: 100%;
    max-width: 320px;
}

.result-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.avatar-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0d0d0e;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

#onlineIdResult {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-top: 0.5rem;
}

#statusMessage {
    font-size: 1rem;
    font-weight: 600;
    color: #a1a1aa;
}

.total-checks {
    margin-top: 1rem;
    font-weight: 800;
    color: #52525b;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cf-turnstile {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #5865f2;
    color: #ffffff;
    padding: 0.8rem 1.75rem;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.discord-button:hover {
    background-color: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .result-card {
        padding: 1.5rem;
    }
}
