:root {
    font-family: "Nunito", serif;
    --transition-speed: 0.3s;
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Nunito", serif;
}

.file{
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
}

.file-active{
    padding: 10px;
    background-color: #1c212c;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
}

article{
    background-color: #1c212c;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }
}

#result p {
    color: #f5accc; /* Neon pink color */
    text-shadow: 0 0 10px #ed1590, 0 0 20px #ed1590, 0 0 25px #ed1590, 0 0 30px #ed1590; /* Stronger neon glow effect */
}


.wheel1, .wheel3 {
    width: 350px;
    height: 350px;
    margin: 15px;
    border-radius: 50%;
    border: 5px solid #39b5e4;
    position: relative;
    overflow: hidden;
    transform: rotate(0deg);
    transition: transform 3s ease-out;
    color: #13171f;
    box-shadow: 0 0 10px #39b5e4, 0 0 10px #39b5e4, 0 0 20px #39b5e4;
}

.wheel2, .wheel4{
    width: 350px;
    height: 350px;
    margin: 15px;
    border-radius: 50%;
    border: 5px solid #ed1590;
    position: relative;
    overflow: hidden;
    transform: rotate(0deg);
    transition: transform 3s ease-out;
    color: #13171f;
    box-shadow: 0 0 10px #ed1590, 0 0 10px #ed1590, 0 0 20px #ed1590;
}

.wheel1::before, .wheel2::before, .wheel3::before, .wheel4::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10%;
    height: 10%;
    border-radius: 50%;
    background-color: #1c212c;
    z-index: 1;
}

.slice-label {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    transform: rotate(var(--label-rotation)) translateY(-90px) rotate(calc(-90deg - var(--label-rotation)));
}

.wheel-with-arrow {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 40px solid #D93526;
    transform: translateX(-50%);
    z-index: 3;
}

.wheel-with-arrow {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
    width: 100%; /* Ensure it takes full width */
    max-width: 350px; /* Match the wheel's width */
    margin: 0 auto; /* Center the container */
}

.arched-text {
    position: absolute;
    top: 10%; /* Adjust to position above the wheel */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    width: 80%; /* Make the SVG responsive */
    max-width: 300px; /* Set a max-width */
    height: auto; /* Maintain aspect ratio */
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
    filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.8)); /* Add shadow */
}

/* Optional: Add animation for a subtle floating effect */
@keyframes float {
    0%, 100% {
        transform: translateX(-50%) rotate(0deg) translateY(0);
    }
    50% {
        transform: translateX(-50%) rotate(0deg) translateY(-5px);
    }
}

.arched-text {
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .wheel {
        width: 300px;
        height: 300px;
    }

    .arrow {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 30px solid #D93526; /* Smaller arrow for mobile */
    }

    .arched-text {
        top: 5%; /* Adjust position for mobile */
        width: 70%; /* Smaller SVG for mobile */
    }
}

/* Neon pink background for images */
.neon-pink-bg {
    background-color: #f140a4;
    border-radius: 50%; /* Make it round */
    padding: 10px; /* Add some padding around the image */
    display: inline-block; /* Ensure it wraps the image properly */
    box-shadow: 0 0 10px #f140a4, 0 0 10px #f140a4, 0 0 20px #f140a4;
}