body {
    background-color: #4d1111;
    color: #f5e6c8;
    font-family: Georgia, serif;
}

.about-page {
    background-color: #4d1111;
}
.about {
    position: absolute;

    top: 30px;

    left: 50%;
    transform: translateX(-50%);

    width: 500px;
}

.linestar {
    position: absolute;
    top: -3px;
    left: 79%;
    width: 60px;
}

.Welcome {
    position: absolute;
    top: 50px;
    left: 28%;
    width: 600px;
}

.curtain {
    position: absolute;
     top: 0;
    left: 0;
    width: 362px;
 z-index: 4;
    pointer-events: none;

}

.watchdivider {
    position: absolute;
    top: 565px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
}
  .menu-text {
    font-size: 20px;
}


/* silhuette */
.fortune-container {
    position: absolute;
    top: 415px; /* subir o bajar */
    left: 16%;
    transform: translateX(-50%);
    text-align: center;
}

/* click */
.fortune-btn {
    width: 220px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.fortune-btn:hover {
    transform: scale(1.05);
}

.fortune-btn:active {
    transform: scale(0.95);
}

/* text*/
.fortune-text {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    
    color: #f5e6c8;
    font-size: 16px;
    font-family: inherit;
    
    max-width: 250px;
    text-align: center;
    
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.dust-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* partículas */
.dust {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #f5e6c8;
    border-radius: 50%;
    opacity: 0.25;
    animation: floatDust 12s linear infinite;
}
.dust.burst {
    animation: burstAway 0.8s ease-out forwards;
}

@keyframes burstAway {
    0% {
        transform: translate(0, 0);
        opacity: 0.4;
    }
    100% {
        transform: translate(
            calc((var(--x) - 0.5) * 200px),
            calc((var(--y) - 0.5) * 200px)
        );
        opacity: 0;
    }
}

/* animación */
@keyframes floatDust {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-10vh) translateX(30px);
        opacity: 0;
    }
}

/* posiciones diferentes */
.dust:nth-child(9)  { left: 5%;  animation-duration: 14s; }
.dust:nth-child(10) { left: 15%; animation-duration: 9s; }
.dust:nth-child(11) { left: 25%; animation-duration: 11s; }
.dust:nth-child(12) { left: 40%; animation-duration: 13s; }
.dust:nth-child(13) { left: 55%; animation-duration: 8s; }
.dust:nth-child(14) { left: 70%; animation-duration: 12s; }
.dust:nth-child(15) { left: 80%; animation-duration: 10s; }
.dust:nth-child(16) { left: 90%; animation-duration: 15s; }


html, body {
    cursor: url("starcursor.png"), auto !important;
}

a {
    cursor: url("starcursor.png"), pointer !important;
}

button {
    cursor: url("starcursor.png"), pointer !important;
}

img {
    cursor: url("starcursor.png"), pointer !important;
}

input, textarea {
    cursor: url("starcursor.png"), text !important;
}

.trail {
    position: fixed;

    width: 2px;
    height: 2px;

    background: #f5e6c8;
    border-radius: 50%;

    pointer-events: none;
    z-index: 9999;

    animation: fadeTrail 0.8s ease-out forwards;

    transform: translate(-50%, -50%);
}

@keyframes fadeTrail {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(2);
    }
}
/* 🕯️ BOTÓN DE LA VELA */

#sparklesBtn {
    position: absolute;

    bottom: 400px;
    right: 25px;
    cursor: pointer;

    z-index: 9999;

    transition: transform 0.2s ease;
}

#sparklesBtn:hover {
    transform: scale(1.1);
}



.trail {
    position: fixed;

    width: 2px;
    height: 2px;

    background: #f5e6c8;

    border-radius: 50%;

    pointer-events: none;

    z-index: 9999;

    transform: translate(-50%, -50%);

    animation: fadeTrail 0.8s ease-out forwards;
}

@keyframes fadeTrail {

    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }

}
.menu-buttons {
    position: absolute;

    top: 280px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: row;

    gap: 40px;

    z-index: 50;
}
.menu-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 12px;
}


/* marco exterior */
.menu-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #B8864A;
    pointer-events: none;
}


/* marco interior */
.menu-item::after {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid #B8864A;
    opacity: 0.7;
    pointer-events: none;
}


/* imagen del botón */
.menu-btn {
    width: 120px;
    cursor: pointer;
    transition: transform 0.2s ease;
}


.menu-btn:hover {
    transform: scale(1.08);
}


/* brillo */
.menu-item:hover::before,
.menu-item:hover::after {
    box-shadow: 0 0 8px #B8864A;
}