/* Webicro Executive Corporate Concept */

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #090d16;
    color: #0f172a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Ambient Ambient Glow */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(67, 56, 202, 0.25) 0%, rgba(37, 99, 235, 0.15) 50%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

/* Page Container */
.page-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
}

/* Main Card */
.card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 40px 36px;
    text-align: center;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Header Logo */
.card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 24px;
}

.brand-logo {
    max-height: 68px;
    width: auto;
    object-fit: contain;
}

/* Line Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0 30%, #e2e8f0 70%, transparent);
    margin-bottom: 28px;
}

/* Card Body */
.card-body {
    margin-bottom: 28px;
}

.domain-tag {
    display: inline-block;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 9999px;
    margin-bottom: 20px;
}

.domain-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    word-break: break-all;
}

.headline {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.45;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.description {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
}

.description strong {
    color: #0f172a;
    font-weight: 600;
}

/* Sleek Minimal Feature Bar */
.features-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 16px 12px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.feature-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
}

.feature-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #334155;
}

.feature-divider {
    width: 1px;
    height: 28px;
    background: #e2e8f0;
}

/* Card Footer */
.card-footer {
    font-size: 0.8125rem;
    color: #94a3b8;
}

.card-footer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.card-footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .card {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .brand-logo {
        max-height: 52px;
    }

    .domain-name {
        font-size: 1.15rem;
    }

    .headline {
        font-size: 1.1rem;
    }

    .features-bar {
        flex-direction: column;
        gap: 12px;
        padding: 14px;
    }

    .feature-divider {
        width: 100%;
        height: 1px;
    }
}
