body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #F3E8FF, #FEF3C7);
    color: #1F2937;
    text-align: center;
    padding: 20px;
    margin: 0;
}

h1 {
    color: #6D28D9;
}

.container, .result-box, .disclaimer {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.result-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 20px auto;
}

input[type="date"] {
    padding: 10px;
    margin: 20px 0;
    border: 2px solid #6D28D9;
    border-radius: 5px;
}

.btn {
    background-color: #6D28D9;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #4B1C9A;
}

.share-buttons a, .email-subscribe button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background: #6D28D9;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.share-buttons a:hover, .email-subscribe button:hover {
    background-color: #4B1C9A;
}

.email-subscribe input[type="email"] {
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #6D28D9;
    border-radius: 5px;
    width: 70%;
}

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

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        #FF6B6B 0% 8.33%,
        #FFD166 8.33% 16.66%,
        #06D6A0 16.66% 25%,
        #118AB2 25% 33.33%,
        #073B4C 33.33% 41.66%,
        #FF6B6B 41.66% 50%,
        #FFD166 50% 58.33%,
        #06D6A0 58.33% 66.66%,
        #118AB2 66.66% 75%,
        #073B4C 75% 83.33%,
        #FF6B6B 83.33% 91.66%,
        #FFD166 91.66% 100%
    );
    transition: transform 3s ease-out;
}

.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-bottom: 30px solid #6D28D9;
}

.ad-placeholder {
    margin: 20px 0;
    padding: 10px;
    background-color: #E5E7EB;
    color: #1F2937;
    text-align: center;
}

footer {
    margin-top: 20px;
    font-size: 0.9em;
}

footer a {
    color: #6D28D9;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .container, .result-box, .disclaimer {
        max-width: 100%;
        padding: 10px;
    }

    .wheel-container {
        width: 200px;
        height: 200px;
    }

    .share-buttons a, .email-subscribe button {
        display: block;
        margin: 10px auto;
        width: 80%;
    }

    .email-subscribe input[type="email"] {
        width: 90%;
    }
}