* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

header nav {
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    color: #667eea;
}

nav {
    position: relative;
    border-top: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.3s;
    white-space: nowrap;
    display: block;
}

nav a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 25%, #7e22ce 50%, #9333ea 75%, #c026d3 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(192, 38, 211, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: logoFloat 3s ease-in-out infinite;
}

.hero-logo img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s;
}

.hero-logo img:hover {
    transform: scale(1.05);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #764ba2;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.4);
}

/* Sections */
section {
    padding: 80px 0;
    background: white;
}

section:nth-child(even) {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.section-title span {
    color: #667eea;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.game-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Benefits Section */
.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 32px;
    color: #667eea;
    flex-shrink: 0;
}

.benefit-content h3 {
    color: #333;
    margin-bottom: 10px;
}

.benefit-content p {
    color: #666;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: #667eea;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Payment Methods */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.payment-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.payment-item:hover {
    transform: translateY(-5px);
}

.payment-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Blog/News Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #667eea;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.partner-item:hover {
    transform: scale(1.05);
}

/* VIP Section */
.vip-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.vip-benefit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.vip-benefit h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px;
    background: #f8f9fa;
    font-weight: bold;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question.active {
    background: #667eea;
    color: white;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    color: #666;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 25px;
}

/* CTA Section */
.cta-section {
    background: #764ba2 !important;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section .section-title {
    color: white;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #667eea;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-logo img {
        max-width: 200px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        width: 100%;
        border-bottom: 1px solid #e9ecef;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav a {
        display: block;
        width: 100%;
        padding: 15px 0;
        font-size: 16px;
    }
    
    nav a:hover {
        background: rgba(102, 126, 234, 0.1);
        padding-left: 10px;
    }
    
    /* 移动端菜单遮罩层 */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .features-grid,
    .games-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .image-content-section {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .image-content-section.reverse {
        direction: ltr !important;
    }
    
    .image-content-section > img {
        order: 1 !important;
        width: 100%;
    }
    
    .image-content-section > .image-content-text {
        order: 2 !important;
        padding: 20px 0;
    }
}

/* Image + Content Section */
.image-content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.image-content-section.reverse {
    direction: rtl;
}

.image-content-section.reverse > * {
    direction: ltr;
}

/* 确保图片和文本有正确的顺序 */
.image-content-section > img {
    order: 0;
}

.image-content-section > .image-content-text {
    order: 0;
}

.image-content-section img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-content-text {
    padding: 20px;
}

.image-content-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.image-content-text h2 span {
    color: #667eea;
}

.image-content-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.image-content-list {
    list-style: none;
    padding: 0;
}

.image-content-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.image-content-list li:last-child {
    border-bottom: none;
}

.image-content-list li::before {
    content: "✓";
    color: #667eea;
    font-weight: bold;
    font-size: 20px;
}

/* Jogos Page Specific Styles */
.page-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 20px;
    opacity: 0.9;
}

.game-categories {
    padding: 80px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.category-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    background: white;
}

.category-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.category-card p {
    color: #333;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

.game-count {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    margin-top: 5px;
    border: 2px solid #667eea;
}

.featured-games {
    padding: 80px 0;
    background: #f8f9fa;
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.showcase-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.showcase-item:hover {
    transform: scale(1.05);
}

.game-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.game-info {
    padding: 25px;
    position: relative;
}

.game-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.game-info p {
    color: #666;
    font-size: 14px;
}

.game-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #667eea;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.game-badge.hot {
    background: #f59e0b;
}

.game-providers {
    padding: 80px 0;
    background: white;
}

.providers-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.provider-item {
    background: #f8f9fa;
    padding: 20px 40px;
    border-radius: 10px;
    font-weight: bold;
    color: #333;
    font-size: 18px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.provider-item:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-5px);
}

.how-to-play {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

.game-features {
    padding: 80px 0;
    background: white;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.feature-box h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    line-height: 1.8;
}

.popular-games {
    padding: 80px 0;
    background: #f8f9fa;
}

.games-list {
    margin-top: 50px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.game-list-item {
    display: grid;
    grid-template-columns: 60px 1fr 150px 120px;
    gap: 20px;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.3s;
}

.game-list-item:last-child {
    border-bottom: none;
}

.game-list-item:hover {
    background: #f8f9fa;
}

.game-rank {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    text-align: center;
}

.game-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.game-type {
    color: #666;
    font-size: 14px;
}

.play-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-btn:hover {
    transform: scale(1.05);
}

nav a.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 32px;
    }
    
    .page-banner p {
        font-size: 18px;
    }
    
    .categories-grid,
    .games-showcase,
    .steps-container,
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .game-list-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .game-rank {
        display: none;
    }
    
    .providers-list {
        gap: 10px;
    }
    
    .provider-item {
        padding: 15px 25px;
        font-size: 14px;
    }
}

/* Main Article Hero Section */
.main-article-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.article-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.article-hero-content h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.article-hero-content h2 span {
    color: #667eea;
    position: relative;
}

.article-hero-content h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.article-intro {
    font-size: 20px;
    color: #667eea;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-left: 4px solid #667eea;
    border-radius: 8px;
}

.article-hero-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.article-hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.article-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s;
}

.article-hero-image:hover img {
    transform: scale(1.05);
}

.article-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 15px;
}

/* Article Sections */
.article-section {
    padding: 80px 0;
    background: white;
}

.article-section:nth-child(even) {
    background: #f8f9fa;
}

.article-content {
    max-width: 900px;
    margin: 50px auto 0;
}

.article-content h3 {
    font-size: 28px;
    color: #333;
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #667eea;
}

.article-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .article-content h3 {
        font-size: 24px;
    }
    
    .article-content p {
        font-size: 16px;
    }
    
    .main-article-section {
        padding: 50px 0;
    }
    
    .article-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .article-hero-content h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .article-intro {
        font-size: 18px;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .article-hero-content p {
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .article-hero-image {
        order: -1;
    }
}

/* Casino Features Section */
.casino-features-section {
    padding: 80px 0;
    background: white;
}

.casino-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.casino-feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.casino-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.casino-feature-card:hover::before {
    left: 100%;
}

.casino-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.feature-icon-wrapper {
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 64px;
    display: inline-block;
    transition: transform 0.3s;
}

.casino-feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.casino-feature-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.casino-feature-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #667eea;
}

.stat-label {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Live Casino Section */
.live-casino-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.live-tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.live-table-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.live-table-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.table-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ef4444;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.table-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.live-table-card:hover .table-overlay {
    opacity: 1;
}

.play-button {
    background: white;
    color: #667eea;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
}

.table-info {
    padding: 25px;
}

.table-info h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.table-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.detail-item {
    font-size: 14px;
    color: #666;
}

.table-stats {
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.players-online {
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
}

/* Casino Showcase Section */
.casino-showcase-section {
    padding: 80px 0;
    background: white;
}

.showcase-container {
    margin-top: 50px;
}

.showcase-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.showcase-main.reverse {
    direction: rtl;
}

.showcase-main.reverse > * {
    direction: ltr;
}

.showcase-content h3 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.showcase-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.showcase-features {
    list-style: none;
    margin-bottom: 30px;
}

.showcase-features li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.showcase-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 18px;
}

.showcase-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.showcase-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.showcase-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

/* VIP Program Section */
.vip-program-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.vip-program-section .section-title {
    color: #764ba2 !important;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.vip-program-section .section-title span {
    color: #fbbf24 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.vip-program-section .section-subtitle {
    color: #000000 !important;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vip-level-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.vip-level-card.featured {
    border-color: #fbbf24;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
    transform: scale(1.05);
}

.vip-level-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.vip-level-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.vip-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fbbf24;
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.vip-level-header {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.vip-level-header.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
}

.vip-level-header.gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
}

.vip-level-header.platinum {
    background: linear-gradient(135deg, #e5e4e2 0%, #b8b8b8 100%);
    color: #1a1a2e;
}

.vip-level-name {
    display: block;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.vip-level-icon {
    font-size: 48px;
    display: block;
}

.vip-level-content {
    padding: 30px;
    background: white;
}

.vip-benefits-list {
    list-style: none;
}

.vip-benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
    position: relative;
    padding-left: 30px;
    color: #333;
}

.vip-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 20px;
}

.vip-level-card.featured .vip-benefits-list li::before {
    color: #fbbf24;
}

.vip-level-card .vip-level-header.gold ~ .vip-level-content .vip-benefits-list li,
.vip-level-card .vip-level-header.platinum ~ .vip-level-content .vip-benefits-list li {
    color: #333;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

/* Payment Methods Section */
.payment-methods-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.payment-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.payment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.payment-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.payment-item h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.payment-item p {
    color: #666;
    font-size: 14px;
}

/* Responsive Styles for Casino Pages */
@media (max-width: 768px) {
    .casino-features-grid,
    .live-tables-grid,
    .vip-levels {
        grid-template-columns: 1fr;
    }
    
    .showcase-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase-main.reverse {
        direction: ltr;
    }
    
    .showcase-image {
        order: -1;
    }
    
    .showcase-content h3 {
        font-size: 28px;
    }
    
    .vip-level-card.featured {
        transform: scale(1);
    }
    
    .vip-level-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Casino Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-section .testimonials-grid {
    margin-top: 50px;
}

.testimonials-section .testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonials-section .testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonials-section .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonials-section .testimonial-author strong {
    color: #333;
    font-size: 18px;
}

.testimonial-location {
    color: #999;
    font-size: 14px;
}

/* Casino FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(102, 126, 234, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 28px;
    color: #667eea;
    font-weight: bold;
    transition: transform 0.3s;
    width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* Sports Betting Page Styles */
.sports-categories-section {
    padding: 80px 0;
    background: white;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sport-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.sport-card:hover::before {
    transform: scaleX(1);
}

.sport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.sport-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s;
}

.sport-card:hover .sport-icon {
    transform: scale(1.2) rotate(5deg);
}

.sport-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.sport-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sport-stats {
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.events-count {
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Betting Features Section */
.betting-features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.betting-features-container {
    margin-top: 50px;
}

.betting-feature-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.betting-feature-main.reverse {
    direction: rtl;
}

.betting-feature-main.reverse > * {
    direction: ltr;
}

.betting-feature-content {
    position: relative;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.betting-feature-content h3 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.betting-feature-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-benefits {
    list-style: none;
    padding: 0;
}

.feature-benefits li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 18px;
}

.betting-feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.visual-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.visual-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.team-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.team-name {
    font-weight: 600;
    color: #333;
}

.team-odds {
    background: #667eea;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.match-time {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    padding: 10px;
}

.cashout-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    width: 100%;
    max-width: 400px;
    color: white;
}

.cashout-header {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cashout-amount {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.cashout-amount .label {
    font-size: 14px;
    opacity: 0.9;
}

.cashout-amount .value {
    font-size: 36px;
    font-weight: bold;
}

.cashout-button {
    background: white;
    color: #667eea;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.cashout-button:hover {
    transform: scale(1.05);
}

/* Betting Types Section */
.betting-types-section {
    padding: 80px 0;
    background: white;
}

.betting-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.betting-type-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.betting-type-card:hover {
    background: white;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.type-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.betting-type-card h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.betting-type-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Upcoming Events Section */
.upcoming-events-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.events-timeline {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.event-date {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .day {
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.event-info {
    flex: 1;
}

.event-sport {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-info h4 {
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
}

.event-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.event-odds {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.event-odds span {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.event-bet-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.event-bet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Mobile Betting Section */
.mobile-betting-section {
    padding: 80px 0;
    background: white;
}

.mobile-betting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.mobile-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mobile-feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
}

.mobile-feature-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.mobile-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.mobile-feature-item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.mobile-feature-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.mobile-visual {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.mobile-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Promotions Section */
.promotions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.promotion-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.promotion-card:hover::before {
    transform: scaleX(1);
}

.promotion-card.featured {
    border-color: #fbbf24;
    border-width: 3px;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.2);
    transform: scale(1.03);
}

.promotion-card.featured::before {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    transform: scaleX(1);
}

.promotion-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.25);
}

.promotion-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.3);
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a2e;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(251, 191, 36, 0.3);
}

.promo-icon {
    font-size: 64px;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.promotion-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.promo-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 15px;
}

.promo-value {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    display: block;
}

.promotion-card.featured .promo-value {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-size: 16px;
}

.promo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.promotion-card.featured .promo-button {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.promotion-card.featured .promo-button:hover {
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
}

/* Responsive Styles for Sports Page */
@media (max-width: 768px) {
    .sports-grid,
    .betting-types-grid,
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .betting-feature-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .betting-feature-main.reverse {
        direction: ltr;
    }
    
    .mobile-betting-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mobile-features {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        grid-template-columns: 80px 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .promotion-card.featured {
        transform: scale(1);
    }
    
    .promotion-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* App Page Styles */
.app-features-section {
    padding: 80px 0;
    background: white;
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.app-feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.app-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.app-feature-card:hover::before {
    transform: scaleX(1);
}

.app-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.app-feature-icon {
    font-size: 64px;
    margin-bottom: 25px;
    display: block;
    transition: transform 0.3s;
}

.app-feature-card:hover .app-feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.app-feature-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.app-feature-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* App Download Section */
.app-download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.download-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.download-text h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 25px;
}

.download-text h2 span {
    color: #667eea;
}

.download-intro {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 35px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    flex: 1;
    min-width: 200px;
}

.download-btn.ios {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

.download-btn.android {
    background: linear-gradient(135deg, #3ddc84 0%, #2ecc71 100%);
    color: white;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.download-icon {
    font-size: 40px;
}

.download-info {
    display: flex;
    flex-direction: column;
}

.download-label {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-platform {
    font-size: 24px;
    font-weight: bold;
}

.app-requirements {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.app-requirements h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.requirement-item {
    font-size: 16px;
    color: #666;
}

.requirement-item strong {
    color: #667eea;
}

.download-visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.download-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* App Screenshots Section */
.app-screenshots-section {
    padding: 80px 0;
    background: white;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.screenshot-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.screenshot-placeholder {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
}

.screenshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.screenshot-card:hover .screenshot-placeholder img {
    transform: scale(1.1);
}

.screenshot-card h4 {
    font-size: 20px;
    color: #333;
    margin: 20px 20px 10px;
}

.screenshot-card p {
    color: #666;
    font-size: 14px;
    margin: 0 20px 20px;
    line-height: 1.6;
}

/* App Advantages Section */
.app-advantages-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.advantages-container {
    margin-top: 50px;
}

.advantage-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.advantage-main.reverse {
    direction: rtl;
}

.advantage-main.reverse > * {
    direction: ltr;
}

.advantage-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.advantage-content h3 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.advantage-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.advantage-list {
    list-style: none;
    padding: 0;
}

.advantage-list li {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.advantage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 20px;
}

.advantage-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    width: 100%;
    max-width: 400px;
}

.advantage-icon-large {
    font-size: 80px;
    margin-bottom: 30px;
}

.advantage-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Installation Guide Section */
.installation-guide-section {
    padding: 80px 0;
    background: white;
}

.installation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.install-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.install-step h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.install-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* App Support Section */
.app-support-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.support-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.support-info h3 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.support-info p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.support-option {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.support-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.support-option h5 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.support-option p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.support-visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.support-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles for App Page */
@media (max-width: 768px) {
    .app-features-grid,
    .screenshots-grid,
    .installation-steps {
        grid-template-columns: 1fr;
    }
    
    .download-content,
    .support-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .download-btn {
        min-width: 100%;
    }
    
    .advantage-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantage-main.reverse {
        direction: ltr;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
}

/* QR Code Download Section */
.qr-download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.qr-download-section .section-title,
.qr-download-section .section-subtitle {
    color: white;
}

.qr-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.qr-code-card {
    background: white;
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.qr-code-box {
    width: 250px;
    height: 250px;
    background: #f8f9fa;
    border: 4px solid #667eea;
    border-radius: 20px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder {
    text-align: center;
}

.qr-icon {
    font-size: 100px;
    margin-bottom: 15px;
}

.qr-placeholder p {
    font-size: 18px;
    color: #667eea;
    font-weight: bold;
}

.qr-code-card h4 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.qr-code-card p {
    color: #666;
    font-size: 16px;
}

.qr-instructions h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: white;
}

.qr-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.qr-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.qr-step-number {
    width: 50px;
    height: 50px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.qr-step-content h5 {
    font-size: 22px;
    color: white;
    margin-bottom: 8px;
}

.qr-step-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* App Ratings Section */
.app-ratings-section {
    padding: 80px 0;
    background: white;
}

.ratings-overview {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    margin: 50px auto;
    max-width: 1000px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
}

.rating-summary {
    text-align: center;
}

.rating-stars {
    font-size: 48px;
    color: #fbbf24;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.rating-score {
    font-size: 64px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.rating-count {
    font-size: 16px;
    color: #666;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-bar-item {
    display: grid;
    grid-template-columns: 100px 1fr 60px;
    gap: 20px;
    align-items: center;
}

.rating-label {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.rating-bar {
    height: 24px;
    background: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 12px;
    transition: width 0.5s ease;
}

.rating-percent {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    text-align: right;
}

.user-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-info strong {
    font-size: 16px;
    color: #333;
}

.review-date {
    font-size: 13px;
    color: #999;
}

.review-stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

/* App Comparison Section */
.app-comparison-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
}

.comparison-table-app {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comp-header-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.comp-header-cell {
    padding: 25px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.comp-header-cell.highlight {
    background: rgba(255, 255, 255, 0.2);
}

.comp-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.3s;
}

.comp-row:hover {
    background: #f8f9fa;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-label-cell {
    padding: 25px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    border-right: 1px solid #e9ecef;
}

.comp-cell {
    padding: 25px;
    font-size: 16px;
    color: #666;
    text-align: center;
    border-right: 1px solid #e9ecef;
}

.comp-cell:last-child {
    border-right: none;
}

.comp-cell.highlight {
    color: #667eea;
    font-weight: bold;
    background: rgba(102, 126, 234, 0.05);
}

/* App Technical Specs Section */
.app-specs-section {
    padding: 80px 0;
    background: white;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.spec-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 35px 30px;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.spec-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.spec-card h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.spec-list {
    list-style: none;
    padding: 0;
}

.spec-list li {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.spec-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 20px;
}

/* Responsive Styles for QR and Ratings */
@media (max-width: 768px) {
    .qr-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .qr-code-card {
        padding: 40px 30px;
    }
    
    .qr-code-box {
        width: 200px;
        height: 200px;
    }
    
    .ratings-overview {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .rating-bar-item {
        grid-template-columns: 80px 1fr 50px;
        gap: 15px;
    }
    
    .user-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-app,
    .comp-header-row,
    .comp-row {
        grid-template-columns: 1fr;
    }
    
    .comp-label-cell,
    .comp-cell {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        text-align: left;
    }
    
    .comp-cell.highlight {
        background: rgba(102, 126, 234, 0.1);
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* Login Page Styles */
.login-methods-section {
    padding: 80px 0;
    background: white;
}

.login-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.login-method-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
    position: relative;
    text-align: center;
}

.login-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.login-method-card.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, #ffffff 100%);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-icon-wrapper {
    margin: 0 auto 25px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.method-icon {
    font-size: 40px;
}

.login-method-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.login-method-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.method-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.method-features li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.method-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 18px;
}

/* Login Security Section */
.login-security-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.security-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.security-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.security-content h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 25px;
}

.security-content h2 span {
    color: #667eea;
}

.security-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.security-features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.security-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.security-check-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.security-feature-text h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.security-feature-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.security-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-stats-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 50px 40px;
    color: white;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    width: 100%;
    text-align: center;
}

.stat-circle {
    margin-bottom: 40px;
}

.stat-number {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 18px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.security-stats-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-stat {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.security-stat:first-child {
    border-top: none;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.stat-value {
    font-size: 18px;
    font-weight: bold;
}

/* Account Benefits Section */
.account-benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-timeline {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
    padding-left: 50px;
}

.benefits-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    position: absolute;
    left: -45px;
}

.timeline-content {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.timeline-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Login Troubleshooting Section */
.login-troubleshooting-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.trouble-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.trouble-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.trouble-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.trouble-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.trouble-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.trouble-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.trouble-link:hover {
    color: #764ba2;
}

/* Quick Access Section */
.quick-access-section {
    padding: 80px 0;
    background: white;
}

.quick-access-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.access-steps-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.access-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.step-content h5 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 14px;
    color: #666;
}

.access-arrow {
    font-size: 32px;
    color: #667eea;
    font-weight: bold;
}

.quick-access-content h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 25px;
}

.quick-access-content h2 span {
    color: #667eea;
}

.access-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.access-tips {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.tip-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.tip-bullet {
    font-size: 24px;
    flex-shrink: 0;
}

.tip-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.tip-text strong {
    color: #333;
}

.access-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.access-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.access-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.access-link {
    text-align: center;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.access-link:hover {
    color: #764ba2;
}

/* Login FAQ Section */
.login-faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.login-faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.login-faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.login-faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.login-faq-question:hover {
    background: #f8f9fa;
}

.login-faq-question h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
    flex: 1;
}

.login-faq-icon {
    font-size: 28px;
    color: #667eea;
    font-weight: bold;
    transition: transform 0.3s;
    width: 30px;
    text-align: center;
}

.login-faq-item.active .login-faq-icon {
    transform: rotate(45deg);
}

.login-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.login-faq-item.active .login-faq-answer {
    max-height: 500px;
}

.login-faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Login Success Stories Section */
.login-stories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.story-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.story-info h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.story-location {
    font-size: 14px;
    color: #666;
}

.story-content {
    margin-bottom: 20px;
}

.story-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

.story-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.story-stats span {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Login Statistics Section */
.login-stats-section {
    padding: 80px 0;
    background: white;
}

.login-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.login-stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
}

.login-stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

.login-stat-card .stat-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.login-stat-card .stat-value {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.login-stat-card .stat-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.login-stat-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Device Compatibility Section */
.device-compatibility-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.device-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.device-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.device-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.device-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.device-card > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.device-browsers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.device-browsers span {
    background: #f8f9fa;
    color: #667eea;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.device-card:hover .device-browsers span {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

/* Account Management Section */
.account-management-section {
    padding: 80px 0;
    background: white;
}

.management-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.management-content h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 25px;
}

.management-content h2 span {
    color: #667eea;
}

.management-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.management-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.management-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mgmt-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.mgmt-text h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.mgmt-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.management-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid #e9ecef;
    max-width: 400px;
    width: 100%;
}

.mockup-top {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.mockup-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mockup-nav span {
    font-size: 24px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.mockup-nav span:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.1);
}

.mockup-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.mockup-widget {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.widget-header {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.widget-value {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Login Best Practices Section */
.login-practices-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.practice-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s;
    position: relative;
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.practice-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.practice-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    margin-top: 20px;
}

.practice-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Responsive Styles for Login Page */
@media (max-width: 768px) {
    .login-methods-grid,
    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
    
    .security-showcase,
    .quick-access-wrapper,
    .management-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .access-steps-card {
        flex-direction: column;
    }
    
    .access-arrow {
        transform: rotate(90deg);
    }
    
    .benefits-timeline {
        padding-left: 40px;
    }
    
    .timeline-marker {
        left: -35px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .stories-grid,
    .login-stats-grid,
    .device-grid,
    .practices-grid {
        grid-template-columns: 1fr;
    }
}

/* Jogo Page Styles */
.game-selection-section {
    padding: 80px 0;
    background: white;
}

.game-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.game-selection-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.game-selection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.selection-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.selection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-selection-card:hover .selection-image img {
    transform: scale(1.1);
}

.selection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-selection-card:hover .selection-overlay {
    opacity: 1;
}

.play-now-btn {
    background: white;
    color: #667eea;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-now-btn:hover {
    transform: scale(1.05);
}

.selection-content {
    padding: 25px;
}

.selection-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.game-count {
    font-size: 16px;
    color: #667eea;
    font-weight: bold;
    margin-bottom: 10px;
}

.game-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Game Experience Section */
.game-experience-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.experience-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.experience-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 50px 40px;
    color: white;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.experience-header h3 {
    font-size: 28px;
    margin: 0;
}

.experience-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-badge-top {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.experience-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.exp-stat-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.exp-stat-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.exp-stat-info {
    flex: 1;
}

.exp-stat-value {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.exp-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.experience-content h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 25px;
}

.experience-content h2 span {
    color: #667eea;
}

.experience-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.exp-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.exp-feature-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.exp-feature-text h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.exp-feature-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Game Providers Section */
.game-providers-section {
    padding: 80px 0;
    background: white;
}

.providers-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.provider-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.provider-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.provider-logo {
    font-size: 64px;
    margin-bottom: 20px;
}

.provider-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.provider-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.provider-games {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

/* Game Modes Section */
.game-modes-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.modes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mode-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.mode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
}

.mode-card.featured-mode {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, #ffffff 100%);
}

.mode-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
}

.mode-icon {
    font-size: 48px;
}

.mode-header h3 {
    font-size: 28px;
    color: #333;
    margin: 0;
    flex: 1;
}

.mode-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mode-description {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.mode-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.mode-features li {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.mode-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 20px;
}

.mode-button {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.mode-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

/* Game Recommendations Section */
.game-recommendations-section {
    padding: 80px 0;
    background: white;
}

.recommendations-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.tab-button {
    background: #f8f9fa;
    color: #666;
    padding: 15px 30px;
    border: 2px solid transparent;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button:hover {
    background: #e9ecef;
    color: #333;
}

.tab-button.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.recommendations-content {
    margin-top: 40px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.recommended-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.recommended-game {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.recommended-game:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.rec-game-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.rec-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rec-game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.rec-game-info {
    padding: 20px;
}

.rec-game-info h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.rec-game-info p {
    font-size: 15px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
}

.rec-game-rating {
    font-size: 14px;
    color: #fbbf24;
}

/* Game Tips Section */
.game-tips-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tip-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #667eea;
    transition: all 0.3s;
    position: relative;
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.tip-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: bold;
    color: rgba(102, 126, 234, 0.1);
    line-height: 1;
}

.tip-card h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    margin-top: 20px;
}

.tip-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Responsive Styles for Jogo Page */
@media (max-width: 768px) {
    .game-selection-grid,
    .providers-showcase,
    .recommended-games-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .modes-container {
        grid-template-columns: 1fr;
    }
    
    .recommendations-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-button {
        width: 100%;
    }
}

/* Promo Page Styles */
.featured-promos-section {
    padding: 80px 0;
    background: white;
}

.featured-promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.featured-promo-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.featured-promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.featured-promo-card.mega-promo {
    border-color: #fbbf24;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    position: relative;
}

.featured-promo-card.mega-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
}

.promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mega-promo .promo-header {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.promo-badge-mega,
.promo-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.timer-icon {
    font-size: 18px;
}

.promo-content {
    padding: 35px 30px;
    flex: 1;
}

.promo-content h3 {
    font-size: 26px;
    color: #333;
    margin-bottom: 20px;
}

.promo-value-large {
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.mega-promo .promo-value-large {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-value {
    font-size: 42px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
}

.promo-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 600;
}

.promo-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.promo-benefits li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.promo-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 18px;
}

.mega-promo .promo-benefits li::before {
    color: #f59e0b;
}

.promo-claim-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    margin-top: auto;
}

.mega-promo .promo-claim-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.promo-claim-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.02);
}

.mega-promo .promo-claim-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

/* Promo Winners Section */
.promo-winners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.winners-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.winner-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.winner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
}

.winner-card.featured-winner {
    border-color: #fbbf24;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
}

.winner-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e9ecef;
}

.winner-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
}

.winner-info {
    flex: 1;
}

.winner-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.winner-location {
    font-size: 14px;
    color: #666;
}

.winner-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.winner-prize {
    text-align: center;
    margin-bottom: 25px;
}

.prize-amount {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.prize-source {
    font-size: 16px;
    color: #666;
}

.winner-quote {
    font-size: 16px;
    color: #555;
    font-style: italic;
    line-height: 1.7;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #fbbf24;
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.winner-item {
    background: white;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.winner-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.winner-avatar-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.winner-details {
    flex: 1;
}

.winner-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.winner-prize-small {
    font-size: 16px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 5px;
}

.winner-promo {
    font-size: 13px;
    color: #999;
}

.winner-date {
    font-size: 13px;
    color: #999;
    text-align: right;
}

.winners-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

.stat-box .stat-number {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-box .stat-label {
    font-size: 16px;
    color: #ffffff !important;
    opacity: 1;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Promo Categories Section */
.promo-categories-section {
    padding: 80px 0;
    background: white;
}

.promo-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.promo-category-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 35px 30px;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
    text-align: center;
}

.promo-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.category-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.promo-category-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.promo-category-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.category-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.stat-value {
    font-size: 14px;
    color: #667eea;
    font-weight: bold;
}

/* Claim Promo Section */
.claim-promo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.claim-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.claim-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.claim-content h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 25px;
}

.claim-content h2 span {
    color: #667eea;
}

.claim-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.claim-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.claim-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.claim-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.claim-step-content h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.claim-step-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.claim-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.claim-visual-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.visual-header h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.visual-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.visual-promo-name {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

.visual-promo-value {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.visual-progress {
    margin-bottom: 25px;
}

.progress-bar {
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 5px;
    transition: width 0.3s;
}

.progress-text {
    font-size: 14px;
    color: #666;
    text-align: right;
}

.visual-actions {
    display: flex;
    gap: 15px;
}

.visual-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.visual-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.visual-btn.secondary {
    background: #f8f9fa;
    color: #667eea;
    border: 2px solid #667eea;
}

.visual-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Promo Terms Section */
.promo-terms-section {
    padding: 80px 0;
    background: white;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.term-card {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.term-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    background: white;
}

.term-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.term-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.term-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Responsive Styles for Promo Page */
@media (max-width: 768px) {
    .featured-promos-grid,
    .promo-categories-grid,
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .winners-showcase {
        grid-template-columns: 1fr;
    }
    
    .winners-stats {
        grid-template-columns: 1fr;
    }
    
    .claim-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .promo-value-large {
        font-size: 42px;
    }
    
    .promo-value {
        font-size: 32px;
    }
}

/* Bonus Page Styles */
.bonus-categories-section {
    padding: 80px 0;
    background: white;
}

.bonus-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bonus-category-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.bonus-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.bonus-category-card:hover::before {
    left: 100%;
}

.bonus-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.bonus-category-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s;
}

.bonus-category-card:hover .bonus-category-icon {
    transform: scale(1.2) rotate(10deg);
}

.bonus-category-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.bonus-category-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bonus-amount {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
}

/* Welcome Bonus Section */
.welcome-bonus-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.welcome-bonus-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.bonus-highlight-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.highlight-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fbbf24;
    color: #1a1a2e;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.bonus-icon-large {
    font-size: 80px;
    margin-bottom: 20px;
}

.bonus-percentage {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1;
}

.bonus-max {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.95;
}

.bonus-description {
    font-size: 20px;
    opacity: 0.9;
}

.welcome-bonus-text h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 25px;
}

.welcome-bonus-text h2 span {
    color: #667eea;
}

.bonus-intro {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.bonus-features-list {
    list-style: none;
    margin-bottom: 35px;
}

.bonus-features-list li {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.bonus-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 20px;
}

.bonus-terms {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 35px;
}

.bonus-terms h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.bonus-terms ol {
    padding-left: 25px;
}

.bonus-terms ol li {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.bonus-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}

.bonus-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Bonus Comparison Section */
.bonus-comparison-section {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    max-width: 1000px;
    margin: 50px auto 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.3s;
}

.comparison-row:hover {
    background: #f8f9fa;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comp-cell {
    padding: 20px;
    font-size: 16px;
    color: #333;
    border-right: 1px solid #e9ecef;
}

.comp-cell:last-child {
    border-right: none;
}

.comp-cell.header {
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.comp-cell.highlight {
    color: #667eea;
    font-weight: bold;
    font-size: 18px;
}

/* Weekly Promos Section */
.weekly-promos-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.weekly-promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.weekly-promo-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
    position: relative;
}

.weekly-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.promo-day-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.weekly-promo-card h4 {
    font-size: 20px;
    color: #333;
    margin: 20px 0 15px;
}

.weekly-promo-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-value-small {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* VIP Bonus Section */
.vip-bonus-section {
    padding: 80px 0;
    background: white;
}

.vip-bonus-content {
    margin-top: 50px;
}

.vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.vip-benefit-item {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.vip-benefit-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.vip-benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.vip-benefit-item h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
}

.vip-benefit-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.vip-cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
}

.vip-cta-box h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.vip-cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.vip-join-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

.vip-join-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive Styles for Bonus Page */
@media (max-width: 768px) {
    .bonus-categories-grid,
    .weekly-promos-grid,
    .vip-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-bonus-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bonus-highlight-card {
        padding: 40px 30px;
    }
    
    .bonus-percentage {
        font-size: 56px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comp-cell {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .comp-cell:last-child {
        border-bottom: none;
    }
}

/* Crash Page Styles */
.crash-how-section {
    padding: 80px 0;
    background: white;
}

.crash-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.crash-step-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
    position: relative;
}

.crash-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.step-visual {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.step-icon {
    font-size: 48px;
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.crash-step-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.crash-step-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Crash Features Section */
.crash-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.crash-features-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.features-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.crash-features-content h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 25px;
}

.crash-features-content h2 span {
    color: #667eea;
}

.features-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.crash-features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.crash-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-check {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.crash-features-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.crash-demo-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.demo-header h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.demo-status {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.demo-multiplier {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 20px;
}

.multiplier-value {
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.multiplier-label {
    font-size: 16px;
    color: #666;
}

.demo-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.demo-stat {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.stat-value {
    font-size: 16px;
    font-weight: bold;
    color: #667eea;
}

.demo-chart {
    height: 100px;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.3) 0%, rgba(102, 126, 234, 0.1) 100%);
    clip-path: polygon(0 100%, 20% 80%, 40% 60%, 60% 40%, 80% 30%, 100% 20%);
}

/* Crash Strategies Section */
.crash-strategies-section {
    padding: 80px 0;
    background: white;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.strategy-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 35px 30px;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.strategy-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.strategy-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.strategy-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.strategy-pros {
    font-size: 14px;
    color: #555;
    padding: 15px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    border-left: 3px solid #667eea;
}

.strategy-pros strong {
    color: #667eea;
}

/* Crash Statistics Section */
.crash-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.stats-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.stats-header h3 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.stats-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.rounds-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.round-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s;
}

.round-item.low {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
}

.round-item.medium {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #fbbf24;
}

.round-item.high {
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
}

.round-number {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.round-multiplier {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.round-status {
    color: #22c55e;
    font-size: 20px;
}

.stats-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.summary-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.summary-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.summary-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.summary-value {
    font-size: 28px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.summary-label {
    font-size: 14px;
    color: #666;
}

/* Crash Tips Section */
.crash-tips-section {
    padding: 80px 0;
    background: white;
}

.tips-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 50px;
}

.tip-main {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 50px 40px;
    color: white;
    text-align: center;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.tip-icon-large {
    font-size: 80px;
    margin-bottom: 25px;
}

.tip-main h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.tip-main p {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.95;
}

.tips-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tip-small {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.tip-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    background: white;
}

.tip-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.tip-small h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.tip-small p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles for Crash Page */
@media (max-width: 768px) {
    .crash-steps,
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .crash-features-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .stats-summary {
        grid-template-columns: 1fr;
    }
    
    .tips-container {
        grid-template-columns: 1fr;
    }
    
    .tips-grid-small {
        grid-template-columns: 1fr;
    }
}

/* Plataforma Page Styles - Fun Version */
.platform-fun-section {
    padding: 80px 0;
    background: white;
}

.fun-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.fun-feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    border: 3px solid #e9ecef;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.fun-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.fun-feature-card:hover::before {
    left: 100%;
}

.fun-feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.fun-icon {
    font-size: 64px;
    margin-bottom: 25px;
    display: block;
    transition: transform 0.3s;
}

.fun-feature-card:hover .fun-icon {
    transform: scale(1.2) rotate(10deg);
}

.fun-feature-card h3 {
    font-size: 26px;
    color: #333;
    margin-bottom: 20px;
}

.fun-feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.fun-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Platform Experience Section */
.platform-experience-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.experience-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.experience-mockup {
    background: white;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid #e9ecef;
    max-width: 350px;
    margin: 0 auto;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    margin-bottom: 20px;
}

.mockup-dots {
    display: flex;
    gap: 5px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.mockup-title {
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.mockup-menu {
    color: white;
    font-size: 20px;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
}

.mockup-feature:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(10px);
}

.mockup-icon {
    font-size: 32px;
}

.mockup-feature span {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.experience-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.experience-content h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 25px;
}

.experience-content h2 span {
    color: #667eea;
}

.experience-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.experience-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.experience-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.point-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Platform Speed Section */
.platform-speed-section {
    padding: 80px 0;
    background: white;
}

.speed-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.speed-card {
    background: #f8f9fa;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    border: 3px solid #e9ecef;
    transition: all 0.3s;
}

.speed-card.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-color: #667eea;
    position: relative;
}

.speed-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.speed-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.speed-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.speed-bar {
    height: 30px;
    background: #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.speed-bar.slow .speed-fill {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.speed-bar.fast .speed-fill {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.speed-fill {
    height: 100%;
    border-radius: 15px;
    transition: width 1s ease;
}

.speed-time {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.speed-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.speed-feature {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s;
}

.speed-feature:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.speed-feature .feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.speed-feature h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.speed-feature p {
    font-size: 14px;
    color: #666;
}

/* Platform Mobile Section */
.platform-mobile-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mobile-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.mobile-content h3 {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
}

.mobile-content > p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.mobile-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.mobile-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-check {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.mobile-benefit span {
    font-size: 17px;
    color: #333;
    font-weight: 600;
}

.mobile-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.mobile-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screen {
    width: 280px;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #333;
    border-radius: 15px;
}

.screen-content {
    background: white;
    border-radius: 30px;
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.screen-header {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.screen-game {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
}

.screen-game:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.game-thumb {
    font-size: 32px;
}

.screen-game span {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

/* Platform Community Section */
.platform-community-section {
    padding: 80px 0;
    background: white;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.community-stat {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 25px;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.community-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.community-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.testimonial-avatar {
    font-size: 48px;
    margin-bottom: 20px;
}

.testimonial-item p {
    font-size: 16px;
    color: #666;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-name {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
}

/* Platform Updates Section */
.platform-updates-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.updates-timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    padding-left: 50px;
}

.updates-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.update-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.update-item::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px #667eea;
}

.update-date {
    font-size: 18px;
    font-weight: bold;
    color: #667eea;
    min-width: 100px;
    padding-top: 5px;
}

.update-content {
    flex: 1;
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
    transition: all 0.3s;
}

.update-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.update-content h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.update-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Live Events Section */
#eventos-ao-vivo {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.live-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.live-event-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.live-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.live-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.live-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.event-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
}

.live-event-card h3 {
    font-size: 20px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.event-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.team {
    font-weight: bold;
    color: #667eea;
    font-size: 18px;
}

.score {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.event-time {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.event-odds {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.event-odds span {
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.event-bet-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.event-bet-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Achievements Section */
#conquistas {
    padding: 80px 0;
    background: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.achievement-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: grayscale(0);
    transition: all 0.3s;
}

.achievement-icon.locked {
    filter: grayscale(100%);
    opacity: 0.5;
}

.achievement-icon.unlocked {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.achievement-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.achievement-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.achievement-reward {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.achievement-progress {
    margin-top: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s;
}

.achievement-progress span {
    font-size: 12px;
    color: #666;
}

/* Daily Challenges Section */
#desafios-diarios {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.challenge-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.challenge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.challenge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.challenge-icon {
    font-size: 48px;
}

.challenge-status {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.challenge-status.completed {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.challenge-status.in-progress {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
}

.challenge-status.locked {
    background: #e9ecef;
    color: #999;
}

.challenge-status.available {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.challenge-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.challenge-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.challenge-progress {
    margin-bottom: 20px;
}

.challenge-progress .progress-bar {
    margin-bottom: 8px;
}

.challenge-progress span {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.challenge-reward {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    color: #667eea;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.challenge-claim-btn,
.challenge-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.challenge-claim-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.challenge-claim-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.challenge-btn:disabled {
    background: #e9ecef;
    color: #999;
    cursor: not-allowed;
}

.challenge-btn:not(:disabled) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.challenge-btn:not(:disabled):hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Leaderboard Section */
#ranking {
    padding: 80px 0;
    background: white;
}

.leaderboard-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.leaderboard-top {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 40px;
}

.leaderboard-first,
.leaderboard-second,
.leaderboard-third {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 3px solid #e9ecef;
    transition: all 0.3s;
}

.leaderboard-first {
    transform: scale(1.1);
    border-color: #fbbf24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.leaderboard-second {
    border-color: #94a3b8;
}

.leaderboard-third {
    border-color: #f59e0b;
}

.crown {
    font-size: 32px;
    margin-bottom: 10px;
    animation: rotate 3s infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.rank-number {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 15px;
}

.rank-avatar {
    font-size: 64px;
    margin-bottom: 15px;
}

.rank-info h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.rank-info p {
    font-size: 18px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leaderboard-item {
    display: grid;
    grid-template-columns: 50px 50px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
}

.leaderboard-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
    transform: translateX(10px);
}

.item-rank {
    font-size: 20px;
    font-weight: bold;
    color: #667eea;
}

.item-avatar {
    font-size: 32px;
}

.item-name {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.item-amount {
    font-size: 16px;
    font-weight: bold;
    color: #667eea;
}

/* Hot Games Section */
#jogos-em-alta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hot-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hot-game-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s;
    position: relative;
    text-align: center;
}

.hot-game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.hot-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.hot-game-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.hot-game-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.hot-game-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.hot-game-stats span {
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

.hot-play-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.hot-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Responsive Styles for Plataforma Page */
@media (max-width: 768px) {
    .fun-features-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-showcase,
    .mobile-showcase,
    .speed-comparison {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .speed-features {
        grid-template-columns: 1fr;
    }
    
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .community-testimonials {
        grid-template-columns: 1fr;
    }
    
    .updates-timeline {
        padding-left: 40px;
    }
    
    .update-item::before {
        left: -35px;
    }
    
    /* New sections responsive */
    .live-events-grid,
    .achievements-grid,
    .challenges-grid,
    .hot-games-grid {
        grid-template-columns: 1fr;
    }
    
    .leaderboard-top {
        flex-direction: column;
        align-items: center;
    }
    
    .leaderboard-first {
        transform: scale(1);
    }
    
    .leaderboard-item {
        grid-template-columns: 40px 40px 1fr auto;
        gap: 10px;
        font-size: 14px;
    }
}

