/* Main Wrapper */
.cempra-wrapper {
    position: relative;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #18181b; /* zinc-900 */
    min-height: 100%;
}

@media (prefers-color-scheme: dark) {
    .cempra-wrapper {
        color: #f4f4f5; /* zinc-100 */
    }
}

/* Background Decor */
.cempra-bg-decor {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.2;
    z-index: 0;
}
@media (prefers-color-scheme: dark) {
    .cempra-bg-decor {
        opacity: 0.4;
    }
}

.cempra-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(100px);
}
.cempra-blob-blue {
    top: -6rem;
    left: -6rem;
    width: 24rem;
    height: 24rem;
    background-color: #60a5fa; /* blue-400 */
}
.cempra-blob-orange {
    top: 50%;
    right: -6rem;
    width: 16rem;
    height: 16rem;
    background-color: #fb923c; /* orange-400 */
}

/* Container */
.cempra-container {
    position: relative;
    max-width: 28rem; /* max-w-md */
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 1.5rem; /* py-12 px-6 */
    z-index: 10;
}

/* Header */
.cempra-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.cempra-logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1.5rem; /* rounded-3xl */
    background-color: #2563eb; /* blue-600 */
    margin-bottom: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.2); /* shadow-blue-500/20 */
}
.cempra-logo-box span {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.cempra-header h1 {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin: 0;
    color: #18181b; /* zinc-900 */
}
@media (prefers-color-scheme: dark) {
    .cempra-header h1 {
        color: white;
    }
}
.cempra-header .text-blue {
    color: #2563eb; /* blue-600 */
}
.cempra-header p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #71717a; /* zinc-500 */
}
@media (prefers-color-scheme: dark) {
    .cempra-header p {
        color: #a1a1aa; /* zinc-400 */
    }
}

/* Grid / Cards */
.cempra-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* space-y-4 alternative */
}

.cempra-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: white;
    border-radius: 1rem; /* rounded-2xl */
    border: 1px solid #e4e4e7; /* zinc-200 */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .cempra-card {
        background-color: #18181b; /* zinc-900 */
        border-color: #27272a; /* zinc-800 */
    }
}

.cempra-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-0.25rem); /* -translate-y-1 */
}

.cempra-card:active {
    transform: scale(0.98);
}

.cempra-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem; /* rounded-xl */
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-right: 1rem;
    flex-shrink: 0;
}

.cempra-content {
    flex: 1;
    min-width: 0;
}
.cempra-content h3 {
    font-size: 0.875rem; /* text-sm */
    font-weight: 600;
    color: #27272a; /* zinc-800 */
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (prefers-color-scheme: dark) {
    .cempra-content h3 {
        color: #f4f4f5; /* zinc-100 */
    }
}
.cempra-content p {
    font-size: 0.75rem; /* text-xs */
    color: #71717a; /* zinc-500 */
    margin: 0;
}
@media (prefers-color-scheme: dark) {
    .cempra-content p {
        color: #a1a1aa; /* zinc-400 */
    }
}

.cempra-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background-color: #fafafa; /* zinc-50 */
    color: #a1a1aa; /* zinc-400 */
    transition: background-color 0.3s, color 0.3s;
}
@media (prefers-color-scheme: dark) {
    .cempra-arrow {
        background-color: #27272a; /* zinc-800 */
    }
}

.cempra-card:hover .cempra-arrow {
    background-color: #eff6ff; /* blue-50 */
    color: #3b82f6; /* blue-500 */
}
@media (prefers-color-scheme: dark) {
    .cempra-card:hover .cempra-arrow {
        background-color: rgba(30, 58, 138, 0.3); /* blue-900/30 */
    }
}

/* Footer */
.cempra-footer {
    margin-top: 3rem;
    text-align: center;
}
.cempra-site-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #a1a1aa; /* zinc-400 */
    text-decoration: none;
    transition: color 0.3s;
}
.cempra-site-link:hover {
    color: #3b82f6; /* blue-500 */
}

.cempra-social {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.cempra-social-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background-color: #e4e4e7; /* zinc-200 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a1a1aa; /* zinc-400 */
    font-size: 0.625rem;
    font-weight: 700;
}
@media (prefers-color-scheme: dark) {
    .cempra-social-icon {
        background-color: #27272a; /* zinc-800 */
    }
}

/* Utility Colors for Icons */
.bg-blue-500 { background-color: #3b82f6; }
.bg-orange-500 { background-color: #f97316; }
.bg-yellow-500 { background-color: #eab308; }
.bg-purple-500 { background-color: #a855f7; }
.bg-slate-700 { background-color: #334155; }
.bg-pink-500 { background-color: #ec4899; }
.bg-amber-700 { background-color: #b45309; }
.bg-red-500 { background-color: #ef4444; }
.bg-yellow-400 { background-color: #facc15; }
.bg-gray-400 { background-color: #9ca3af; }
.bg-cyan-500 { background-color: #06b6d4; }
.bg-emerald-600 { background-color: #059669; }
.bg-blue-600 { background-color: #2563eb; }
.bg-orange-600 { background-color: #ea580c; }
