.dev-environment-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f4f6f8;
    font-family: Arial, Helvetica, sans-serif;
}

.dev-environment-card {
    width: 100%;
    max-width: 620px;
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.dev-environment-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff7ed;
    color: #c2410c;
    font-size: 14px;
    font-weight: 700;
}

.dev-environment-card h1 {
    font-size: 34px;
    margin-bottom: 14px;
    color: #111827;
}

.dev-environment-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 30px;
}

.dev-environment-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

.dev-environment-info-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 12px;
}

.dev-environment-info-item span {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 6px;
}

.dev-environment-info-item strong {
    font-size: 15px;
    color: #111827;
}

#reload-dev-page {
    border: none;
    background: #111827;
    color: #ffffff;
    padding: 13px 22px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.2s ease;
}

#reload-dev-page:hover {
    background: #374151;
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .dev-environment-card {
        padding: 28px 20px;
    }

    .dev-environment-card h1 {
        font-size: 28px;
    }

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