:root {
    --bg-dark: #05070a;
    --bg-card: rgba(10, 14, 20, 0.6);
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --accent: #4ade80;
    --accent-pro: #2dd4bf;
    --accent-gold: #fbbf24;
    --border: rgba(255, 255, 255, 0.08);
    --gradient-1: linear-gradient(to right, var(--accent), var(--accent-pro));
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;

    /*Index style*/
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(74, 222, 128, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(45, 212, 191, 0.05) 0%, transparent 50%);
    z-index: -2;
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-decoration: none;
    color: var(--text-main);
}

.logo span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header de Versión */
.version-header {
    padding: 4rem 0 3rem;
}

.version-badge {
    display: inline-block;
    background: rgba(74, 222, 128, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(74, 222, 128, 0.2);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.release-date {
    color: var(--text-dim);
    font-size: 1rem;
}

/* Highlights Bento Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.card.featured {
    grid-column: span 2;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.card p {
    color: var(--text-dim);
}

/* Efecto Spotlight (Reutilizado) */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s;
    /*noinspection CssUnresolvedCustomProperty*/
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(74, 222, 128, 0.07), transparent 40%);
}

.card:hover::before {
    opacity: 1;
}

/* Changelog Section */
.changelog-section {
    padding-bottom: 5rem;
}

.changelog-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.changelog-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.changelog-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 8px;
    box-shadow: 0 0 10px var(--accent);
    flex-shrink: 0;
}

.changelog-info {
    flex: 1;
}

.changelog-ver {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.changelog-date {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.changelog-list {
    list-style: none;
}

.changelog-list li {
    margin-bottom: 10px;
    padding-left: 5px;
    position: relative;
    color: var(--text-dim);
}

/*.changelog-list li::before {
    content: "•"; position: absolute; left: 0; color: var(--accent); font-weight: bold;
}*/

.tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 8px;
    font-weight: 700;
    width: 43px;
    display: inline-block;
    height: 18px;
    text-align: center;
    line-height: 1.3;
}

.tag-fix {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

.tag-new {
    background: rgba(74, 222, 128, 0.1);
    color: var(--accent);
}

.tag-imp {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.skip-notice {
    color: var(--text-dim); /* Gris sutil para no competir con el contenido */
    font-size: 0.8rem; /* Tamaño pequeño, tipo "legal" o "utility" */
    letter-spacing: 0.3px;
    text-align: center;
    margin-bottom: 2.5rem;
}

.settings-highlight {
    color: var(--accent); /* El verde de tu badge "Latest Release" */
    transition: all 0.2s ease;
}

@media (max-width: 600px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .card.featured {
        grid-column: auto;
    }

    .changelog-item {
        gap: 1rem;
    }
}