* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PT Mono", monospace;
    background: linear-gradient(45deg, white 0%, grey 100%);
    min-height: 100vh;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.container {
    /* max-width: 1280px; */
    /* width: 80%; */
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}



header {
    text-align: center;
    border-radius: 10px;
    padding: 5px;
    background-color: rgba(255, 255, 230, 0.4);
    margin: 5px;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgb(0, 127, 255);
    /* margin-bottom: 20px; */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.accordion-caption {
    font-weight: 600;
}


.wheel-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin: 10px 0px; */
}

/* 
.wheel {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 4s cubic-bezier(0.23, 1, 0.32, 1);
} */

/* 
.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.wheel-segment:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
} */
/* 
.pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid #ff4757;
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
} */
/* 
.spin-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    z-index: 5;
    border: 4px solid white;
}

.spin-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.6);
}

.spin-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.spin-button span {
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.spin-button.disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.spin-button.disabled:hover {
    transform: translate(-50%, -50%);
    box-shadow: none;
}
 */


.svg-icon {
    width: 24px;
    /* Set icon size */
    height: 24px;
    /* Set icon size */
    margin-right: 8px;
    /* Space between icon and text */
    vertical-align: middle;
    /* Align icon vertically */
}

.btn-medium {

    width: 100%;
    margin: 5px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-size: large !important;
    border-style: double !important;
    border-width: thick !important;
}






.controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.input-group input {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-group button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}


.credit {
    font-size: smaller;
    font-style: italic;
}

.credit-header {
    font-size: medium;
    font-weight: bold;
    font-style: normal;
}

.result {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.result.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.result-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
}

.result-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.result-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

#prizeName {
    font-weight: 700;
    color: #667eea;
    font-size: 1.3rem;
}

#closeResult {
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

#closeResult:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}


/* 
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinning {
    animation: spin 4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
} */



/* Responsive Design */
@media (max-width: 768px) {
    /* .container {
        padding: 20px;
    } */

    header h1 {
        font-size: 1.8rem;
    }

    #wheel {
        width: 360px;
        height: 360px;
    }

    #spin {
        font-size: medium;
    }

    /* .controls {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .action-buttons {
        justify-content: center;
    } */
}

@media (max-width: 480px) {
    #wheel {
        width: 270px;
        height: 270px;
    }

    #spin {
        font-size: small;
        /* width: 60px;
        height: 60px; */
    }

    header h1 {
        font-size: larger;
    }

    /* .wheel-segment {
        font-size: 12px;
    } */

    /* .spin-button span {
        font-size: 14px;
    } */
}