/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.75rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.625rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Buttons */
.btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    min-height: 44px;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2C2C2C;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #2C2C2C;
    transform: translateY(-2px);
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-height: 56px;
}

.btn-cta {
    margin: 1.5rem 0;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2C2C2C, #1A1A1A);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-ball {
    width: 80px;
    height: 80px;
    animation: bounce 1.5s ease-in-out infinite;
}

.preloader-text {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0;
}

header .container {
    max-width: unset;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@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%;
    }

    .header-cta .btn i {
        display: none;
    }

    .strategy-table {
        min-width: 600px;
    }
}

.header-logo .logo-img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.header.scrolled .header-logo .logo-img {
    height: 40px;
}

/* Navigation */
.header-nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

@media (min-width: 1164px) {
    .header-nav {
        display: block;
    }
}

/* Header CTA */
.header-cta {
    gap: 1rem;
    display: flex;

}


/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #FFD700;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (min-width: 1164px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Navigation */
.header-nav.mobile-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-nav.mobile-open .nav-list {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.header-nav.mobile-open .nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.hero-fallback-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.7), rgba(26, 26, 26, 0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .hero {
        height: 70vh;
    }
}

/* Key Stats Section */
.key-stats {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 0;
    margin-bottom: 0;
}

.key-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
    font-family: 'Fredoka', cursive;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section:nth-child(even) {
    background: #fff;
}

.section:nth-child(odd) {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: #2C2C2C;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.section-title i {
    color: #FFD700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Quick Overview Section */
.overview-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
    align-items: center;
}


.overview-table-wrapper {
    overflow-x: auto;
}

.overview-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.overview-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.overview-table td:first-child {
    font-weight: 600;
    background: #f8f9fa;
    width: 30%;
    color: #2C2C2C;
}

.overview-table tr:last-child td {
    border-bottom: none;
}

.overview-table tr:hover {
    background: #f8f9fa;
}

.overview-image {
    text-align: center;
}

.overview-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Base Game Section */
.base-game-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
    align-items: center;
}


.text-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.text-content p {
    margin-bottom: 1.5rem;
}

.cta-wrapper {
    text-align: center;
    margin: 2rem 0;
}

.base-game-images {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.game-image {
    text-align: center;
}

.game-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.game-img:hover {
    transform: scale(1.02);
}

.image-caption {
    margin-top: 0.5rem;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Free Spins Section */
.free-spins-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
    align-items: center;
}

.free-spins-images {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Payout Table Section */
.payout-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
    align-items: center;
}

.payout-table-wrapper {
    overflow-x: auto;
}

.payout-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.payout-table th {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2C2C2C;
    padding: 1rem;
    font-weight: 600;
    text-align: left;
}

.payout-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.payout-table tr:last-child td {
    border-bottom: none;
}

.payout-table tr:hover {
    background: #f8f9fa;
}

.table-note {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.payout-image {
    text-align: center;
}

/* Betting Strategy Section */
.strategy-content {
    display: grid;
    gap: 2rem;
}

.strategy-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.strategy-table-wrapper {
    overflow-x: auto;
}

.strategy-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.strategy-table th {
    background: linear-gradient(135deg, #32CD32, #228B22);
    color: #fff;
    padding: 1rem;
    font-weight: 600;
    text-align: left;
}

.strategy-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.strategy-table tr:last-child td {
    border-bottom: none;
}

.strategy-table tr:hover {
    background: #f8f9fa;
}

.strategy-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 1rem;
    line-height: 1.7;
}

.strategy-content .strategy-disclaimer {
    order: 4;
}

.strategy-content .cta-wrapper {
    order: 5;
}

.strategy-content .strategy-image {
    text-align: center;
    order: 3;
    margin-top: 2rem;
}

/* Secret Tips Section */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tip-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.tip-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2C2C2C;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.tip-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.tip-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.tips-image {
    text-align: center;
}

/* Pros & Cons Section */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pros-cons-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pros-card,
.cons-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pros-card {
    border-left: 5px solid #32CD32;
}

.cons-card {
    border-left: 5px solid #FF4500;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pros-card .card-title {
    color: #32CD32;
}

.cons-card .card-title {
    color: #FF4500;
}

.pros-list,
.cons-list {
    list-style: none;
}

.pros-list li,
.cons-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.pros-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #32CD32;
}

.cons-list li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #FF4500;
}

/* Comparison Section */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, #1E90FF, #0066CC);
    color: #fff;
    padding: 1rem;
    font-weight: 600;
    text-align: left;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

.comparison-table tr:first-child td {
    background: #fff3cd;
    font-weight: 600;
}

.comparison-summary {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 10px;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C2C2C;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: #f8f9fa;
}

.faq-icon {
    font-size: 1.2rem;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 0;
    line-height: 1.7;
    color: #555;
}

/* User Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.review-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #FFD700;
    opacity: 0.3;
}

.review-author {
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.review-role {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

/* Responsible Gaming Section */
.responsible-gaming {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-top: 5px solid #FF4500;
}

.responsible-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.responsible-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.responsible-content .footer-disclaimer {
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid #FF4500;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.final-cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(255, 165, 0, 0.6));
    z-index: 2;
}

.final-cta-content {
    position: relative;
    z-index: 3;
}

.final-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #2C2C2C;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.final-cta-btn {
    animation: pulse-glow 2s ease-in-out infinite;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
        transform: translateY(-3px);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2C2C2C, #1A1A1A);
    color: #fff;
    padding: 3rem 0 2rem;
}

.footer-content {
    text-align: center;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFD700;
}

.footer-copyright {
    border-top: 1px solid #444;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Floating Button */
.floating-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.floating-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
}

.floating-btn-img {
    width: 40px;
    height: 40px;
    position: absolute;
    animation: spin 4s linear infinite;
}

.floating-btn-icon {
    font-size: 1.5rem;
    color: #2C2C2C;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
    .floating-button {
        width: 60px;
        height: 60px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-btn-img {
        width: 35px;
        height: 35px;
    }
    
    .floating-btn-icon {
        font-size: 1.2rem;
    }
}

/* Responsive Tables */
@media (max-width: 767px) {
    .overview-table,
    .payout-table,
    .strategy-table {
        font-size: 0.9rem;
    }
    
    .overview-table td,
    .payout-table td,
    .strategy-table td,
    .payout-table th,
    .strategy-table th {
        padding: 0.75rem 0.5rem;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table td,
    .comparison-table th {
        padding: 0.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
.faq-question:focus,
.footer-link:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .floating-button,
    .final-cta,
    .footer {
        display: none;
    }
    
    .main {
        margin-top: 0;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
