/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B35 50%, #F7931E 100%);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 44px;
    text-align: center;
    justify-content: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(45deg, #8B00FF, #9932CC);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #9932CC, #8B00FF);
    box-shadow: 0 8px 25px rgba(139, 0, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #FF8C00;
}

.btn-hero {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #333;
    font-size: 1.2rem;
    padding: 16px 32px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-hero:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.btn-large {
    font-size: 1.3rem;
    padding: 20px 40px;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B35 50%, #F7931E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    width: 120px;
    height: auto;
    animation: float 2s ease-in-out infinite;
}

.pump-animation {
    margin: 2rem 0;
}

.pump-icon {
    font-size: 3rem;
    color: #FFD700;
    animation: pump 1.5s ease-in-out infinite;
}

.preloader-text {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pump {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.how-to-play .btn-primary {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: linear-gradient(45deg, #ac48fd, #ae61d4);
}

.header .container {
    max-width: unset;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.logo a:hover .logo-text {
    color: #FFD700;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 215, 0, 0.6);
}
/* Mobile adjustment */
@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(139, 0, 255, 0.3);
}

.header-cta {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(139, 0, 255, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

/* ===== INTRO SECTION ===== */
.intro {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text .lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.intro-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.intro-image {
    text-align: center;
}

.intro-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.intro-image img:hover {
    transform: scale(1.05);
}

/* ===== ADVANTAGES SECTION ===== */
.advantages {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B35 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.advantage-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.advantage-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.advantage-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== GAME OVERVIEW SECTION ===== */
.game-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.overview-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.overview-content .overview-image {
    max-width: 800px;
    margin: 0 auto;
}

.overview-text {
    color: #333;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.game-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.game-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.game-table th,
.game-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.game-table th {
    background: linear-gradient(45deg, #8B00FF, #9932CC);
    color: white;
    font-weight: bold;
}

.game-table tr:hover {
    background: #f8f9fa;
}

.overview-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.overview-image img:hover {
    transform: scale(1.05);
}

/* ===== HOW TO PLAY SECTION ===== */
.how-to-play {
    padding: 6rem 0;
    background: linear-gradient(135deg, #8B00FF 0%, #9932CC 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: #FFD700;
}

.step-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.how-to-play-content {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== BONUS FEATURE SECTION ===== */
.bonus-feature {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C00 100%);
}

.bonus-content {
    margin-bottom: 3rem;
}

.bonus-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bonus-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.bonus-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.bonus-feature-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.bonus-feature-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.bonus-gallery {
    margin: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.bonus-conclusion {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 3rem auto 0;
}

/* ===== STRATEGIES SECTION ===== */
.strategies {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.strategies .section-title {
    color: #333;
}

.strategies-intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.strategy-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.strategy-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8B00FF;
}

.strategy-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.strategy-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.strategy-pros-cons {
    display: grid;
    gap: 1rem;
}

.pros, .cons {
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pros {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
    color: #155724;
}

.cons {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.pros::before {
    content: "✓ Pros: ";
    font-weight: bold;
}

.cons::before {
    content: "✗ Cons: ";
    font-weight: bold;
}

.strategies-conclusion {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    max-width: 800px;
    margin: 3rem auto 0;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 6rem 0;
    background: linear-gradient(135deg, #9932CC 0%, #8B00FF 100%);
}

.reviews-intro {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
}

.review-info h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.review-type {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.review-rating {
    margin: 1rem 0;
}

.star {
    color: #FFD700;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.9;
}

.review-text::before {
    content: "";
    font-size: 2rem;
    color: #FFD700;
    line-height: 0;
}

.review-text::after {
    content: "";
    font-size: 2rem;
    color: #FFD700;
    line-height: 0;
}

.reviews-conclusion {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 3rem auto 0;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.faq .section-title {
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem;
    background: linear-gradient(45deg, #8B00FF, #9932CC);
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(45deg, #9932CC, #8B00FF);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B35 50%, #8B00FF 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.final-cta-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.final-cta-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.disclaimer {
    margin-top: 3rem;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #FFD700;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #8B00FF, #9932CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 0, 255, 0.4);
}

.age-notice {
    color: #FFD700;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ===== FLOATING BUTTON ===== */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-button.visible {
    opacity: 1;
    visibility: visible;
    animation: slideInUp 0.5s ease;
}

.floating-button a {
    display: block;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-button a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.floating-button img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid #FFD700;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .intro-content,
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .advantages-grid,
    .strategies-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 1400px) {
        /* Header Mobile */
        .nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: left 0.3s ease;
            z-index: 999;
        }
        
        .nav.active {
            left: 0;
        }
        
        .nav-list {
            flex-direction: column;
            gap: 2rem;
            text-align: center;
        }
        
        .nav-link {
            font-size: 1.2rem;
            padding: 1rem 2rem;
        }
        
        .mobile-menu-toggle {
            display: flex;
            z-index: 1001;
        }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    /* Hero Mobile */
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-video-desktop {
        display: none;
    }
    
    .hero-video-mobile {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Sections Mobile */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    section {
        padding: 4rem 0 !important;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .intro-text .lead {
        font-size: 1.2rem;
    }
    
    .advantages-grid,
    .steps-grid,
    .strategies-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Table Mobile */
    .game-table-wrapper {
        overflow-x: auto;
        width: 100%;
    }

    .overview-text {
        width: 100%;
    }
    
    .game-table {
        min-width: 500px;
    }
    
    .game-table th,
    .game-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Cards Mobile */
    .advantage-card,
    .step-card,
    .strategy-card,
    .review-card,
    .bonus-feature-card {
        padding: 1.5rem;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .btn-hero {
        font-size: 1.1rem;
        padding: 14px 28px;
    }
    
    .btn-large {
        font-size: 1.2rem;
        padding: 16px 32px;
    }
    
    /* Final CTA Mobile */
    .final-cta-title {
        font-size: 2.2rem;
    }
    
    .final-cta-text {
        font-size: 1.1rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Floating Button Mobile */
    .floating-button {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button a {
        width: 60px;
        height: 60px;
    }
    
    .floating-button img {
        width: 35px;
        height: 35px;
    }
    
    .pulse-ring {
        width: 60px;
        height: 60px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {

    .header-content {
        flex-wrap: wrap;
    }

    .header-cta {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        order: 3;
    }

    .header-cta .btn {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-cta .btn i {
        display: none;
    }

    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .intro-text .lead {
        font-size: 1.1rem;
    }
    
    .final-cta-title {
        font-size: 1.8rem;
    }
    
    .advantages-grid,
    .steps-grid,
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card,
    .step-card,
    .strategy-card {
        padding: 1.25rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-video video {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Print Styles */
@media print {
    .header,
    .floating-button,
    .preloader {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .btn {
        border: 1px solid black !important;
        background: white !important;
        color: black !important;
    }
}
