
body {
    background-color: #f3f8ff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.yoni-container {
    max-width: 680px;
    margin: 2rem auto;
    padding: 1rem;
}

.yoni-card {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    padding: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeIn 0.4s ease;
}

.yoni-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #222;
}

.yoni-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.yoni-options button {
    padding: 0.9rem;
    border: none;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #ffe6f0, #d6f0ff);
    color: #333;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.yoni-options button:hover {
    background: linear-gradient(135deg, #ffcce1, #bae6ff);
    transform: scale(1.03);
}

.yoni-result {
    font-size: 18px;
    text-align: center;
    padding: 1.5rem;
    background: #fefeff;
    border-left: 4px solid #87c7ff;
}
.yoni-result h2 {
    font-size: 16px;
    margin-bottom: 0.5rem;
}
.yoni-result p {
    margin: 0.5rem 0;
}

#yoni-controls {
    text-align: center;
    margin-bottom: 2rem;
}
#yoni-restart {
    background: linear-gradient(to right, #cce8ff, #ffe6f5);
    color: #333;
    font-size: 18px;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: all 0.3s ease;
}
#yoni-restart:hover {
    background: linear-gradient(to right, #bae2ff, #ffd9e7);
    transform: translateY(-1px);
}

.yoni-history h3 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: #444;
}
.yoni-history ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.yoni-history li {
    margin: 0.5rem 0;
    padding: 0.6rem 1rem;
    background: #f9fbff;
    border-radius: 1rem;
    font-size: 18px;
    color: #666;
    display: flex;
    align-items: center;
}
.yoni-history li::before {
    content: "🪷";
    margin-right: 0.6rem;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}
