/* Custom Styles for Gullesur Games */

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.text-glow {
    text-shadow: 0 0 20px rgba(242, 204, 13, 0.3);
}

.gold-glow:hover {
    box-shadow: 0 0 15px rgba(242, 204, 13, 0.15);
}

.text-brushed-gold {
    background: linear-gradient(180deg, #fffbe3 0%, #f2cc0d 45%, #b89805 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.petal-shape {
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
}

.sun-rays {
    background: radial-gradient(circle, rgba(242,204,13,0.2) 0%, rgba(242,204,13,0) 70%);
}

@keyframes gentle-spin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.animate-gentle-spin {
    animation: gentle-spin 6s ease-in-out infinite;
}
