/* Default Site – HOC System placeholder */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f0f2f5;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.default-site {
    text-align: center;
    padding: 2rem;
}

.default-site-content {
    max-width: 480px;
    margin: 0 auto;
}

.default-site-icon {
    color: #adb5bd;
    margin-bottom: 2rem;
}

.default-site h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.default-site p {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.default-site-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.default-site-btn {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    font-size: 0.925rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.15s ease;
    color: #495057;
    background: #fff;
    border: 1px solid #dee2e6;
}

.default-site-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.default-site-btn-primary {
    color: #fff;
    background: #1a1a2e;
    border-color: #1a1a2e;
}

.default-site-btn-primary:hover {
    background: #2d2d4a;
    border-color: #2d2d4a;
}

.default-site-footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #adb5bd;
    letter-spacing: 0.03em;
}

.default-site-footer a {
    color: #868e96;
    text-decoration: none;
}

.default-site-footer a:hover {
    color: #495057;
    text-decoration: underline;
}
