/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(18, 18, 30, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 255, 157, 0.3);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

/* CTA Modal Styles */
.cta-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 3, 12, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 20px;
}

.cta-overlay.active {
    opacity: 1;
}

.cta-card {
    background: rgba(18, 18, 30, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.5);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 255, 157, 0.2);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-overlay.active .cta-card {
    transform: scale(1);
}

.cta-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cta-close:hover {
    color: #fff;
}

.cta-icon {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    animation: floating 3s ease-in-out infinite;
}

.cta-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #00ff9d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.cta-text .highlight {
    color: #00ff9d;
    font-weight: 700;
}

.cta-subtext {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

.cta-btn {
    width: 100%;
    display: block;
    padding: 16px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pulse-btn {
    animation: btnPulse 2s infinite;
}

.cta-footer {
    font-size: 12px;
    color: #666;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 157, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
    }
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: white;
    background: radial-gradient(circle at top center, #0a1f18 0%, #00030c 100%);
    overflow-x: hidden;
    padding-bottom: 80px;
    /* Space for mobile nav */
}

.mobile-bottom-nav {
    display: none;
}

.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: linear-gradient(135deg, #00ff9d 0%, #00cc7a 100%);
    color: #000;
    border-color: #00ff9d;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(52, 237, 120, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00cc7a 0%, #1fb355 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(52, 237, 120, 0.5);
}

.btn-primary:hover::after {
    opacity: 1;
}

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

.btn-outline:hover {
    background-color: #00030c;
    color: #00ff9d;
    border-color: #00ff9d;
}

/* Header */
.header {
    background-color: #00030c;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.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: #00ff9d;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

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

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

.hamburger:hover span {
    color: #00ff9d;
}

/* 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: #00ff9d;
}

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

/* Slider Controls Removed on PC/Mobile as requested */
.slider-controls {
    display: none !important;
}

.slider-controls button {
    background: rgba(52, 237, 120, 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: #00ff9d;
    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: #00ff9d;
    transform: scale(1.2);
}

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

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

/* 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: #00ff9d;
    transform: translateY(-5px);
}

.category-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
    filter: brightness(0) saturate(100%) invert(47%) sepia(96%) saturate(1234%) hue-rotate(120deg) brightness(98%) contrast(91%);
    transition: filter 0.3s ease;
}

.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: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(34, 45, 146, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.game-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.game-item a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Play Overlay */
.game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.game-item::after {
    content: '\f4f4';
    /* Bootstrap Icon for play-fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    font-size: 40px;
    color: #00ff9d;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    text-shadow: 0 0 20px rgba(52, 237, 120, 0.8);
}

.game-item:hover::before {
    opacity: 1;
}

.game-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

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

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

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

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

.bonus-card {
    background: linear-gradient(135deg, #1a0a1e 0%, #0c0612 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: #00ff9d;
}

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

.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: #00ff9d;
}

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

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

.promo-code-ticket {
    background: #000;
    border: 2px dashed #00ff9d;
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.promo-code-ticket:hover {
    background: rgba(52, 237, 120, 0.1);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.promo-code-ticket:active {
    transform: scale(0.98);
}

.ticket-label {
    color: #888;
    font-size: 12px;
    font-weight: 700;
}

.ticket-code {
    color: #00ff9d;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
}

.ticket-icon {
    font-size: 16px;
    color: #fff;
}

/* Tooltip for copy */
.promo-code-ticket::after {
    content: 'Click to Copy';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff9d;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.promo-code-ticket:hover::after {
    opacity: 1;
}

.promo-code-ticket.copied::after {
    content: 'COPIED!';
    background: #fff;
}

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

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

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

.faq-item {
    background: linear-gradient(135deg, rgba(52, 237, 120, 0.1) 0%, rgba(40, 201, 101, 0.1) 100%);
    border: 1px solid rgba(52, 237, 120, 0.2);
    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: linear-gradient(135deg, rgba(52, 237, 120, 0.2) 0%, rgba(40, 201, 101, 0.2) 100%);
}

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

.faq-question i {
    font-size: 1.2rem;
    color: #00ff9d;
    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, #1a0a1e 0%, #0c0612 100%);
}

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

.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: #0c0612;
    padding: 3rem 0 1rem;
}

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

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

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.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: #00ff9d;
}

.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) {

    /* Mobile Bottom Nav */
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        height: 70px;
        border-radius: 20px;
        z-index: 1002;
        padding: 0 10px;
        border: 1px solid rgba(0, 255, 157, 0.2);
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #a0a0b0;
        font-size: 10px;
        gap: 4px;
        transition: all 0.3s ease;
        flex: 1;
    }

    .nav-item i {
        font-size: 20px;
        margin-bottom: 2px;
        transition: all 0.3s ease;
    }

    .nav-item.active,
    .nav-item:hover {
        color: #00ff9d;
    }

    .nav-item.active i {
        filter: drop-shadow(0 0 8px rgba(0, 255, 157, 0.6));
        transform: translateY(-2px);
    }

    /* Hide Desktop Nav Elements */
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: none !important;
    }

    /* Adjust Layout */
    .slide {
        background-position: 75% center !important;
    }

    .navbar .container {
        gap: 10px;
        justify-content: space-between;
        padding: 0 15px;
        height: 50px;
    }

    /* Mobile Header Glassmorphism */
    .header {
        background: rgba(18, 18, 30, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0, 255, 157, 0.2);
    }

    .logo {
        height: 28px;
    }

    /* Buttons on right */
    .nav-buttons {
        display: flex;
        gap: 8px;
    }

    .nav-buttons .btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Hide desktop menu list */
    .nav-menu {
        display: none;
    }


    .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: auto;
        margin-right: 2%;
        max-width: 90%;
        text-align: right;
    }

    .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;
    }

    .logo {
        height: 32px;
    }

    .footer-logo {
        height: 45px;
    }

    .hero {
        height: 40vh;
        min-height: 250px;
        max-height: 350px;
    }

    .slide {
        background-position: 75% center !important;
    }

    /* Darker overlay for mobile hero */
    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.65);
        z-index: 1;
    }

    .slide-content {
        padding: 1.5rem;
        text-align: right;
        position: relative;
        z-index: 2;
    }

    .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;
    }
}

/* Bonus highlight */
.bonus-highlight {
    color: #00ff9d;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(52, 237, 120, 0.3);
}

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