.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.casino-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}
.casino-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.btn-primary {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
}
.faq-item {
    border-bottom: 1px solid #e5e7eb;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer.active {
    max-height: 500px;
}
.calculator-result {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
nav {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}
.nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; 
}
.mobile-menu-close {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px;
}
#mobile-menu {
    position: fixed; 
    top: 64px;
    left: 0;
    right: 0;
    z-index: 999;
}
body {
    padding-top: 64px; 
}