:root {
    --dot-highlight-color: var(--primary);
    --dot-highlight-size: 150px;
    --spotlight-color: var(--primary-transparent);
}

[data-theme="light"] {
    --dot-highlight-color: var(--primary-dark);
    --spotlight-color: var(--primary-transparent);
}

/* capa superior de puntos brillantes */
body::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    /* background-image: radial-gradient(var(--dot-highlight-color) 2px, var(--spotlight-color) 2px); */
    background-image: radial-gradient(var(--dot-highlight-color) 2px, var(--spotlight-color) 2px);
    background-size: 35px 35px;

    -webkit-mask-image: radial-gradient(150px circle at var(--x, 50%) var(--y, 50%),
            black 20%,
            transparent 100%);

    mask-image: radial-gradient(150px circle at var(--x, 50%) var(--y, 50%),
            black 20%,
            transparent 100%);
}

.home-container {
    position: relative;
    width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 80%;
}

.home-container h1 {
    font-size: 4rem;
    text-align: center;
    margin: 0;
    font-weight: 800;
}

.home-container p {
    text-align: center;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
}

[data-theme="dark"] .gradient-text {
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    background-size: 100% 100%;
    display: inline-block;
}

[data-theme="light"] .gradient-text {
    background: linear-gradient(90deg, var(--primary-light), var(--primary-darkest));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    background-size: 100% 100%;
    display: inline-block;
}

.work-in-progress {
    font-size: 1.25rem;
    text-align: center;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}

[data-theme="dark"] .work-in-progress {
    color: var(--primary-dark);
}

[data-theme="light"] .work-in-progress {
    color: var(--primary);
}

.work-in-progress::before {
    content: "{ ";
}

.work-in-progress::after {
    content: " }";
}