/* Global Styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(to bottom, #fdeff3, #ffe4e1);
    font-family: "Poppins", sans-serif;
    color: #333;
}

.wrapper {
    width: 90%;
    max-width: 34.37em;
    max-height: 90vh;
    background-color: #ffffff;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    padding: 3em;
    border-radius: 1em;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
}

#wheel {
    max-height: inherit;
    width: inherit;
    top: 0;
    padding: 0;
    border-radius: 50%;
    border: 10px solid #ffd1dc;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
    display: block;
    margin: 0 auto;
    transform-origin: center;
}

.btn-pastel-glam {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 26%;
    width: 26%;
    border-radius: 50%;
    cursor: pointer;
    border: 0;
    background: linear-gradient(to right, #fadadd, #ff99cc);
    color: white;
    text-transform: uppercase;
    font-size: 1.8em;
    letter-spacing: 0.1em;
    font-weight: 600;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-pastel-glam:hover {
    background: linear-gradient(to right, #ff99cc, #fadadd);
    transform: translate(-50%, -50%) scale(1.05);
    /* Scale without changing the anchor point */
}

.btn-pastel-glam:active {
    transform: translate(-50%, -50%) scale(0.98);
    /* Subtle press-down effect */
}


.result-pastel-glam {
    font-size: 1.3em;
    font-weight: bold;
    color: #cc6699;
    text-align: center;
    margin-top: 1.5em;
    text-shadow: 0 1px 2px rgba(255, 182, 193, 0.6);
}

.arrow {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%) rotate(270deg);
    width: 3em;
    /* Increased width */
    height: 3em;
    /* Increased height */
    clip-path: polygon(50% 0, 25% 50%, 40% 50%, 40% 100%, 60% 100%, 60% 50%, 75% 50%);
    background: linear-gradient(to bottom, #ffcba4, #d4af91);
    /* Bright rose gold gradient */
    border: 2px solid #b98b6f;
    /* Metallic border for better definition */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    /* Stronger shadow for more depth */
    z-index: 10;
    /* Ensures it appears above the wheel */
}