@font-face {
    font-family: 'PrintChar21';
    src: url('fonts/PrintChar21.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1a1a;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.wheel-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto 20px;
}

#rouletteWheel {
    width: 100%;
    height: 100%;
}

.pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #ff0000;
    z-index: 2;
}

#rollButton {
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#rollButton:hover {
    background: #45a049;
}

#rollButton:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

#result {
    margin-top: 20px;
    font-size: 24px;
    color: white;
}