.whell-to-hell {
    display: flex;
}
.wheel-container {
    position: relative;
    width: 500px;
    margin: 20px auto;
}

#wheel {
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Šípka na vrchu */
.arrow {
    position: absolute;
    top: calc(50% - 5px);
    right: -20px;
    transform: translateY(-50%);
    width: 0; 
    height: 0; 
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 30px solid var(--green);
    z-index: 10;
}

#spinBtn {
    margin: 20px;
    padding: 15px 40px;
    font-size: 20px;
    background: var(--green);
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all .5s;
}

#spinBtn:hover {
    background: #000;
    color: var(--green);
}

#resultBlock {
    text-align: center;
    padding: 20px;
    background: #000000;
    color: var(--green);
    border: 5px solid var(--green);
    margin-top: 20px;
    border-radius: 0px;
    width: 400px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
p#resultText {
    font-size: 2em;
    font-weight: bold;
}
.animate-result {
    animation: blink 0.5s infinite;
}

@keyframes blink {
    50% { opacity: 0.5; }
}

/* Definícia farieb pre jednotlivé triedy */
.koleso-t { background-color: #0080d5; }      /* Modrá pre TimeOut */
.koleso-b { background-color: #820e01; }      /* Červená pre BAN */
.koleso-g { background-color: #db8300; }      /* Oranžová pre Gift */
.koleso-lucky { background-color: #00913c; }  /* Zelená pre Šťastie */

select#speedSelect {
    border-radius: 0 !important;
    border: 2px solid #000;
    height: 40px;
}


/* Štýly pre zväčšovacie tlačidlo */
.maximus {
    display: inline-block;
    padding: 10px 15px;
    background: var(--green);
    color: #000;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8em;
    transition: background 0.3s;
}

.maximus:hover {
    background: #000;
    color: var(--green);
}

/* Nastavenie sekcie keď je vo Fullscreen */
#mainSection:fullscreen {
    background-color: #111; /* Tmavé pozadie namiesto bieleho */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
}

#mainSection:fullscreen h1, 
#mainSection:fullscreen p {
    color: white;
}

/* Úprava layoutu vo fullscreen aby to nevyzeralo blbo */
#mainSection:fullscreen .whell-to-hell {
    transform: scale(1.2); /* Mierne zväčšíme koleso v plnom režime */
    margin: 40px 0;
}
a.change-whell {
    background-color: var(--green);
    color: #000;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
}
a.change-whell:hover {
    background-color: #000;
    color: var(--green);
}