/* Promo Banner */
.promo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4a4a7a 0%, #2d2d5a 100%);
    color: white;
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    border-top: 1px solid #ff474f;
    height: 90px;
}

.promo-close {
    position: absolute;
    top: 5px;
    right: 8px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 3px;
    border-radius: 50%;
    transition: background 0.3s ease;
    line-height: 1;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.promo-icon {
    background: #ff474f;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    flex-shrink: 0;
}

.promo-text {
    flex: 1;
    line-height: 1.1;
}

.promo-text h4 {
    margin: 0 0 3px 0;
    font-size: 16px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.promo-text p {
    margin: 0 0 2px 0;
    font-size: 14px;
    color: #ffd700;
    font-weight: 600;
    line-height: 1;
}

.min-deposit {
    font-size: 11px;
    color: #ccc;
    line-height: 1;
}

.promo-timer {
    background: rgba(0, 0, 0, 0.3);
    padding: 9px 12px;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 21px;
    color: #ffd700;
    border: 1px solid #ff474f;
    line-height: 1;
}

.promo-cta {
    background: #ff474f;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.promo-cta:hover {
    background: #e63946;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 71, 79, 0.4);
}

/* Support Bubble */
.support-bubble {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1001;
    animation: pulse 2s infinite;
}

.support-bubble a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff474f;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 71, 79, 0.4);
    transition: all 0.3s ease;
}

.support-bubble a:hover {
    background: #e63946;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 71, 79, 0.6);
}

.support-bubble i {
    font-size: 18px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #120549;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SEO Hidden H1 */
.seo-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background-color: #ff474f;
    color: white;
    border-color: #ff474f;
}

.btn-primary:hover {
    background-color: #e63946;
    border-color: #e63946;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background-color: white;
    color: #222d92;
}

/* Header */
.header {
    background-color: #222d92;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #ff474f;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 500px;
    padding: 2rem;
    margin-left: 5%;
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff474f;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.slider-controls button {
    background: rgba(255, 71, 79, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: all;
}

.slider-controls button:hover {
    background: #ff474f;
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff474f;
    transform: scale(1.2);
}

/* Slots Section */
.slots {
    padding: 4rem 0;
    background: linear-gradient(135deg, #120549 0%, #1a0a5e 100%);
}

.slots h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff474f;
}

/* Categories */
.categories {
    margin-bottom: 3rem;
    overflow: hidden;
}

.category-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex: 0 0 auto;
    min-width: 120px;
}

.category-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(34, 45, 146, 0.3);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-item a:hover {
    background: rgba(34, 45, 146, 0.6);
    border-color: #ff474f;
    transform: translateY(-5px);
}

.category-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
}

.category-item span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.game-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: rgba(34, 45, 146, 0.2);
}

.game-item:hover {
    transform: scale(1.05);
}

.game-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.game-item:hover img {
    transform: scale(1.1);
}

/* Bonuses Section */
.bonuses {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a0a5e 0%, #120549 100%);
}

.bonuses h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff474f;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bonus-card {
    background: linear-gradient(135deg, #222d92 0%, #1a237e 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: #ff474f;
}

.bonus-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff474f;
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.bonus-game {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.bonus-steps h4 {
    margin-bottom: 1rem;
    color: #ff474f;
}

.bonus-steps ul {
    text-align: left;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.bonus-steps li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.bonus-code {
    background: rgba(255, 71, 79, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: linear-gradient(135deg, #120549 0%, #1a0a5e 100%);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff474f;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(34, 45, 146, 0.3);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(34, 45, 146, 0.5);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer div {
    padding: 0 1.5rem 1.5rem;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a0a5e 0%, #120549 100%);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff474f;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Footer */
.footer {
    background-color: #222d92;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ff474f;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff474f;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 1;
    }
    
    .nav-brand {
        order: 2;
    }
    
    .nav-menu {
        order: 3;
    }
    
    .navbar .container {
        gap: 10px;
        justify-content: flex-start;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #222d92;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        height: 50vh;
        min-height: 300px;
        max-height: 400px;
    }
    
    .hero-nav {
        display: none;
    }
    
    .slider-controls {
        display: none;
    }
    
    .support-bubble {
        right: 10px;
        bottom: 110px; /* Adjusted for even larger promo banner */
        top: auto;
        transform: none;
    }

    .support-bubble a {
        width: 45px;
        height: 45px;
    }

    .support-bubble i {
        font-size: 16px;
    }

    /* Promo Banner Mobile */
    .promo-banner {
        padding: 12px 15px;
        height: 80px;
    }

    .promo-content {
        gap: 12px;
        flex-wrap: nowrap;
    }

    .promo-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .promo-text h4 {
        font-size: 14px;
    }

    .promo-text p {
        font-size: 12px;
    }

    .min-deposit {
        font-size: 9px;
    }

    .promo-timer {
        font-size: 16px;
        padding: 6px 9px;
    }

    .promo-cta {
        padding: 9px 18px;
        font-size: 15px;
    }

    .promo-close {
        font-size: 21px;
        top: 3px;
        right: 5px;
    }
    
    .slide-content {
        margin-left: 2%;
        max-width: 90%;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .category-slider {
        justify-content: flex-start;
    }
    
    .category-item {
        min-width: 100px;
    }
    
    .category-item img {
        width: 30px;
        height: 30px;
    }
    
    .category-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 40vh;
        min-height: 250px;
        max-height: 350px;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-card {
        padding: 1.5rem;
    }
    
    .about-content {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
.btn:focus,
.faq-question:focus,
.category-item a:focus,
.game-item:focus {
    outline: 2px solid #ff474f;
    outline-offset: 2px;
}