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

:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 12px 24px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 0;
    box-shadow: var(--shadow-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 36px;
    animation: float 3s ease-in-out infinite;
}

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

.logo-text h1 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.logo-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Burger Menu Button */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu:hover span {
    background: #FFE66D;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.mobile-menu-content {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 40px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    transition: all 0.3s ease;
    text-align: center;
    display: block;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.6) 100%);
    transform: translateX(10px);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
    text-align: center;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.primary-cta {
    display: inline-block;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-strong);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.primary-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 12px 24px rgba(245, 87, 108, 0.4);
    }
    50% {
        box-shadow: 0 16px 32px rgba(245, 87, 108, 0.6);
    }
}

/* Demo Game */
.demo-game {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.game-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFE66D 0%, #FF6B6B 100%);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    z-index: 10;
    box-shadow: var(--shadow-medium);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    display: block;
}

.demo-note {
    text-align: center;
    margin-top: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

/* Casinos Section */
.casinos-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.section-intro {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.section-intro-text {
    margin-bottom: 50px;
}

.intro-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.casino-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.casino-card.featured {
    border: 3px solid #FFE66D;
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
}

.best-choice-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFE66D 0%, #FF6B6B 100%);
    color: var(--dark-color);
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-medium);
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.casino-logo {
    width: 120px;
    height: 50px;
    object-fit: contain;
}

.casino-rating {
    text-align: right;
}

.stars {
    font-size: 18px;
    display: block;
}

.rating-number {
    font-weight: 700;
    font-size: 24px;
    color: var(--dark-color);
}

.casino-bonus {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.bonus-title {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.bonus-amount {
    font-size: 20px;
    font-weight: 700;
}

.casino-features {
    list-style: none;
    margin-bottom: 25px;
}

.casino-features li {
    padding: 8px 0;
    font-size: 15px;
    color: #555;
}

.cta-button {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.featured-cta {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.info-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.features-list li:last-child {
    border-bottom: none;
}

.info-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: var(--shadow-soft);
}

/* How To Play Section */
.howto-section {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.step-card p {
    opacity: 0.95;
    line-height: 1.7;
}

/* Rules Section */
.rules-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.rules-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.rules-column {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.rules-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.rules-column ul {
    list-style: none;
    padding-left: 0;
}

.rules-column li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.rules-column li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 24px;
    line-height: 1.2;
}

.rules-column p {
    color: #555;
    line-height: 1.8;
    margin-top: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid #667eea;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateX(5px);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.faq-item p {
    color: #555;
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.mega-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FFE66D 0%, #FF6B6B 100%);
    color: var(--dark-color);
    padding: 20px 60px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-strong);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.mega-cta:hover {
    transform: translateY(-5px) scale(1.08);
}

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

/* Footer */
.footer {
    background: #2C3E50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    opacity: 0.9;
    line-height: 1.8;
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 14px;
    color: #FFE66D;
    font-weight: 500;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile */
    .nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .logo-icon {
        font-size: 30px;
    }

    .logo-text h1 {
        font-size: 22px;
    }

    .logo-tagline {
        font-size: 10px;
    }

    /* Hero Mobile */
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .primary-cta {
        padding: 15px 30px;
        font-size: 16px;
    }

    .game-iframe {
        height: 400px;
    }

    .game-badge {
        font-size: 12px;
        padding: 8px 15px;
        top: 10px;
        right: 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-intro {
        font-size: 14px;
        text-align: left;
    }

    .intro-paragraph {
        font-size: 14px;
    }

    .casinos-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .rules-content {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .mega-cta {
        padding: 15px 40px;
        font-size: 18px;
    }

    .casino-card {
        padding: 25px;
    }

    .info-card {
        padding: 25px;
    }

    .rules-column {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

    /* Mobile Menu Adjustments */
    .mobile-menu-content {
        padding: 30px 20px;
    }

    .mobile-nav-link {
        font-size: 20px;
        padding: 12px 15px;
    }

    .close-menu {
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .casinos-section,
    .info-section,
    .howto-section,
    .rules-section,
    .faq-section,
    .final-cta {
        padding: 50px 0;
    }

    .game-iframe {
        height: 350px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .bonus-amount {
        font-size: 18px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}