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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px; /* Space for fixed header */
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.nav-active::after {
    width: 100%;
}

.nav-link.nav-active {
    color: #ff6b35;
}

.btn-nav {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
    color: white !important;
}

.btn-nav::after {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

.nav-mobile {
    padding: 40px 20px;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.nav-active {
    color: #ff6b35;
    padding-left: 10px;
}

.mobile-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white !important;
    text-align: center;
    border-radius: 25px;
    margin-top: 20px;
    border: none !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-cta:hover {
    color: white !important;
    padding-left: 0 !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 75vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* Scroll Down Button */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.scroll-down-btn:hover {
    opacity: 1;
    color: #ff6b35;
    transform: translateY(-3px);
}

.scroll-down-btn i {
    font-size: 1.5rem;
    animation: float 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 180px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

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

/* Slots Section */
.slots {
    padding: 80px 0;
    background: #f8f9fa;
}

.slots h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.slot-item {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.slot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

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

/* Bonus Section */
.bonus {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
}

.bonus-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-image {
    flex: 1;
    text-align: center;
}

.bonus-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bonus-text {
    flex: 1;
}

.bonus-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.bonus-highlight {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-plus {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    opacity: 0.8;
}

.bonus-spins {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-bonus {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #333;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-bonus:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffb347, #ffd700);
}

/* SEO Content Section */
.seo-content {
    padding: 80px 0;
    background: #ffffff;
}

.seo-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.seo-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.seo-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 40px 0 20px 0;
    border-left: 4px solid #ff6b35;
    padding-left: 20px;
}

.seo-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.seo-text strong {
    color: #333;
    font-weight: 600;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .slots {
        padding: 60px 0;
    }
    
    .slots h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .bonus {
        padding: 60px 0;
    }
    
    .bonus-content {
        gap: 40px;
    }
    
    .bonus-text h2 {
        font-size: 2rem;
    }
    
    .bonus-amount {
        font-size: 2.5rem;
    }
    
    .bonus-spins {
        font-size: 2rem;
    }
    
    .seo-content {
        padding: 60px 0;
    }
    
    .seo-text h2 {
        font-size: 2rem;
    }
    
    .seo-text h3 {
        font-size: 1.3rem;
    }
    
    .seo-text p {
        font-size: 1rem;
    }
}

/* Tablet and Mobile Styles */
@media (max-width: 1024px) {
    /* Header Mobile Styles */
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .header-content {
        padding: 15px 0;
    }
    
    body {
        padding-top: 75px;
    }
    
    .mobile-nav-overlay {
        top: 75px;
        height: calc(100vh - 75px);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .header-content {
        padding: 12px 0;
    }
    
    body {
        padding-top: 70px;
    }
    
    .mobile-nav-overlay {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .hero {
        min-height: 65vh;
        padding: 15px;
        background-attachment: scroll;
    }
    
    .scroll-down {
        bottom: 20px;
    }
    
    .scroll-down-btn {
        font-size: 0.8rem;
    }
    
    .scroll-down-btn i {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        gap: 15px;
        margin-top: 1.5rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 160px;
    }
    
    .slots {
        padding: 50px 0;
    }
    
    .slots h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .bonus {
        padding: 50px 0;
    }
    
    .bonus-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .bonus-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .bonus-highlight {
        padding: 20px;
        margin: 20px 0;
    }
    
    .bonus-amount {
        font-size: 2rem;
    }
    
    .bonus-spins {
        font-size: 1.8rem;
    }
    
    .bonus-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .btn-bonus {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .seo-content {
        padding: 50px 0;
    }
    
    .seo-text h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .seo-text h3 {
        font-size: 1.2rem;
        margin: 30px 0 15px 0;
        padding-left: 15px;
    }
    
    .seo-text p {
        font-size: 0.95rem;
        text-align: left;
        margin-bottom: 15px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
        padding: 10px;
    }
    
    .scroll-down {
        bottom: 15px;
    }
    
    .scroll-down-btn {
        font-size: 0.75rem;
        gap: 5px;
    }
    
    .scroll-down-btn i {
        font-size: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 1.2rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 140px;
        width: 100%;
        max-width: 250px;
    }
    
    .slots {
        padding: 40px 0;
    }
    
    .slots h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .bonus {
        padding: 40px 0;
    }
    
    .bonus-text h2 {
        font-size: 1.5rem;
    }
    
    .bonus-highlight {
        padding: 15px;
        margin: 15px 0;
    }
    
    .bonus-amount {
        font-size: 1.8rem;
    }
    
    .bonus-spins {
        font-size: 1.5rem;
    }
    
    .bonus-plus {
        font-size: 1rem;
    }
    
    .btn-bonus {
        font-size: 1rem;
        padding: 12px 25px;
        width: 100%;
        max-width: 280px;
    }
    
    .seo-content {
        padding: 40px 0;
    }
    
    .seo-text h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .seo-text h3 {
        font-size: 1.1rem;
        margin: 25px 0 12px 0;
        padding-left: 12px;
    }
    
    .seo-text p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
}

/* Power Spins Section */
.power-spins {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.power-spins::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23ffd700" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.power-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.power-image {
    flex: 1;
    text-align: center;
}

.power-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.power-image img:hover {
    transform: scale(1.05);
}

.power-text {
    flex: 1;
}

.power-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.power-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ff6b35;
    margin: 25px 0 15px 0;
    border-left: 4px solid #ffd700;
    padding-left: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.power-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

.power-text strong {
    color: #ffd700;
    font-weight: 600;
}

.btn-power {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #1a1a2e;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: 20px;
    display: inline-block;
}

.btn-power:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffed4e, #ff8c42);
    border-color: #ffd700;
}

/* Tablet Responsive - Power Spins */
@media (max-width: 1024px) {
    .power-spins {
        padding: 60px 0;
    }
    
    .power-content {
        gap: 40px;
    }
    
    .power-text h2 {
        font-size: 30px;
    }
    
    .power-text h3 {
        font-size: 20px;
    }
}

/* Mobile Responsive - Power Spins */
@media (max-width: 768px) {
    .power-spins {
        padding: 50px 0;
    }
    
    .power-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .power-text h2 {
        font-size: 26px;
    }
    
    .power-text h3 {
        font-size: 18px;
    }
    
    .power-text p {
        font-size: 15px;
    }
    
    .btn-power {
        font-size: 14px;
        padding: 12px 30px;
    }
}

/* Small Mobile Responsive - Power Spins */
@media (max-width: 480px) {
    .power-spins {
        padding: 40px 0;
    }
    
    .power-text h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .power-text h3 {
        font-size: 16px;
        margin: 20px 0 10px 0;
    }
    
    .power-text p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-power {
        font-size: 13px;
        padding: 10px 25px;
        width: 100%;
        max-width: 280px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #ff8c42, #ffb347);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.3);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

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

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Tablet Responsive - FAQ */
@media (max-width: 1024px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 17px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 25px;
    }
}

/* Mobile Responsive - FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 50px 0;
    }
    
    .faq h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-toggle {
        font-size: 20px;
        width: 25px;
        height: 25px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 18px 20px;
    }
}

/* Small Mobile Responsive - FAQ */
@media (max-width: 480px) {
    .faq {
        padding: 40px 0;
    }
    
    .faq h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .faq-question {
        padding: 15px 18px;
    }
    
    .faq-question h3 {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .faq-toggle {
        font-size: 18px;
        width: 22px;
        height: 22px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 18px;
        max-height: 250px;
    }
}

/* Footer Casino Links */
.footer-casinos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-casino-link {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border: 1px solid #34495e;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-casino-link:hover {
    color: #ff6b35;
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.footer-casino-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-casino-link:hover i {
    transform: translateX(2px);
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 80px;
    height: 80px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav a:hover,
.footer-nav a.active {
    color: #ff6b35;
}

.footer-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b35;
}

/* Image Loading Animations */
img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

img[loading="lazy"] {
    opacity: 1;
}

/* Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Slot Animations */
.slot-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section Animations */
.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

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

/* Active Navigation States */
.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a.active {
    color: #ff6b35;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b35;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Smooth Scroll Offset */
section[id] {
    scroll-margin-top: 80px;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    
    .footer-casinos {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
        margin-top: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-nav {
        gap: 20px;
        justify-content: center;
    }
    
    .footer-casinos {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .footer-casino-link {
        justify-content: center;
        width: 100%;
        max-width: 250px;
    }
    
    section[id] {
        scroll-margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0;
        margin-top: 30px;
    }
    
    .footer-nav {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .footer-nav a {
        font-size: 0.85rem;
    }
    
    .footer-casino-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

/* Mini Casino Section */
.mini-casinos {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mini-casinos h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
}

.mini-casino-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.mini-casino-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    position: relative;
}

.mini-casino-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

.casino-name {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    text-align: center;
}

.casino-url {
    font-size: 14px;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
}

.mini-casino-link i {
    font-size: 16px;
    color: #ff6b35;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mini-casino-link:hover i {
    opacity: 1;
    transform: translateX(3px);
}

/* Tablet Responsive - Mini Casino */
@media (max-width: 1024px) {
    .mini-casinos {
        padding: 50px 0;
    }
    
    .mini-casinos h2 {
        font-size: 26px;
    }
    
    .mini-casino-links {
        gap: 25px;
    }
    
    .mini-casino-link {
        padding: 20px 25px;
        min-width: 180px;
    }
}

/* Mobile Responsive - Mini Casino */
@media (max-width: 768px) {
    .mini-casinos {
        padding: 40px 0;
    }
    
    .mini-casinos h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .mini-casino-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .mini-casino-link {
        padding: 20px 25px;
        min-width: 250px;
        max-width: 300px;
    }
    
    .casino-name {
        font-size: 16px;
    }
    
    .casino-url {
        font-size: 13px;
    }
}

/* Small Mobile Responsive - Mini Casino */
@media (max-width: 480px) {
    .mini-casinos {
        padding: 30px 0;
    }
    
    .mini-casinos h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .mini-casino-link {
        padding: 18px 20px;
        min-width: 220px;
        max-width: 280px;
    }
    
    .casino-name {
        font-size: 15px;
    }
    
    .casino-url {
        font-size: 12px;
    }
}