/* Global Styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto Mono", monospace;
}

body {
    background: url('comb.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    /* Ensure text remains readable */
    font-family: "Roboto Black", sans-serif;
    overflow: hidden;
}


.wrapper {
    position: absolute;
    top: 50%;
    left: 51.5%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 34.37em;
    max-height: 90vh;
    background-color: rgba(0, 0, 0, 0);
    /* Transparent black */
    padding: 3em;
    border-radius: 1em;
}



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

#wheel {
    max-height: inherit;
    width: inherit;
    top: 0;
    padding: 0;
    border-radius: 50%;
    border: 10px solid #dcdcdc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    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, #b0c4de, #778899);
    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, #333333, #000000);
    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 */
}