:root {
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Sombra personalizada y bordes */
.shadow-custom {
    box-shadow: var(--card-shadow);
}

.card-crypto {
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03) !important;
}

.card-crypto:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Badge de símbolo flotante */
.crypto-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Caja de icono */
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* La descripción */
.card-description {
    font-size: 0.92rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Corta el texto a 3 líneas para que todas las cajas midan igual */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Botón Premium */
.btn-premium {
    background-color: var(--brand-color, #0d6efd);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-premium:hover {
    filter: brightness(1.1);
    color: white;
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

/* --- Mejora del Hero --- */
.main-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); /* Azul noche muy profesional */
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 0; /* Quitamos margen para que el banner de adsense sea el separador */
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* --- Ajuste de las Cards (para que se vean como en tu imagen pero mejor) --- */
.card-crypto {
    border-radius: 24px !important; /* Bordes más suaves */
    border: 1px solid rgba(0,0,0,0.05) !important;
    background: #ffffff;
    transition: all 0.4s ease;
}

/* El icono circular que ya tienes se ve bien, vamos a darle un toque de brillo */
.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

/* El Badge de la moneda (BTC, LTC...) */
.badge.bg-light {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b !important;
    background-color: #f1f5f9 !important;
    letter-spacing: 0.05em;
}

/* --- Botón con flecha --- */
.btn-premium {
    border-radius: 14px !important;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    border: none !important;
    transition: transform 0.2s ease, filter 0.2s ease !important;
}

.btn-premium i {
    transition: transform 0.2s ease;
}

.btn-premium:hover i {
    transform: translateX(4px); /* La flechita se mueve al pasar el mouse */
}