
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    font-size: 60px;
    color: #ff6b35;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-element:nth-child(1) { top: 20%; left: 10%; }
.floating-element:nth-child(2) { top: 60%; right: 15%; }
.floating-element:nth-child(3) { top: 30%; right: 30%; }
.floating-element:nth-child(4) { bottom: 20%; left: 20%; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    margin-bottom: 40px;
}

.title-main {
    display: block;
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

.title-sub {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #cccccc;
    margin-top: -10px;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8)); }
}

.hero-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    perspective: 1000px;
}

.card {
    width: 120px;
    height: 180px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 15px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.card:hover {
    transform: rotateY(10deg) translateY(-10px);
}

.card-1 { animation: cardFloat 3s ease-in-out infinite; animation-delay: 0s; }
.card-2 { animation: cardFloat 3s ease-in-out infinite; animation-delay: 1s; }
.card-3 { animation: cardFloat 3s ease-in-out infinite; animation-delay: 2s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotateY(5deg); }
    50% { transform: translateY(-15px) rotateY(-5deg); }
}

.card-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    font-weight: bold;
}

.card-1 .card-symbol, .card-3 .card-symbol { color: #000000; }
.card-2 .card-symbol { color: #ff0000; }

.card-corner {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    font-weight: bold;
    color: inherit;
}

.card-1 .card-corner, .card-3 .card-corner { color: #000000; }
.card-2 .card-corner { color: #ff0000; }

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

/* Gaming App Section */
.gaming-app {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.gaming-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.step-img img {
    width: 100%;
    max-width: 450px;
}

.rolling-banner {
    margin-top: 30px;
}

.img-desktop {
    display: block;
    width: 100%;
    max-width: 1200px;
    border-radius: 10px;
}

.img-mobile {
    display: none;
    width: 100%;
    border-radius: 10px;
}

.phone-mockup {
    display: flex;
    justify-content: center;
}

.phone-mockup img {
    width: 100%;
    max-width: 400px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a0e4e, #2e1065);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 20px;
    height: 100%;
}

.app-header {
    color: white;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.game-item {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.features-list {
    space-y: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.feature-item span {
    font-size: 1.1rem;
    color: #ffffff;
}

/* Tier Info Section */
.tier-info {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.tier-visualization {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.tier-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tier-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 30px;
    min-width: 280px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.super-player .tier-card {
    border-color: #ff6b35;
    background: linear-gradient(145deg, #4a2c2a, #3a1c1a);
}

.member .tier-card {
    border-color: #35a3ff;
    background: linear-gradient(145deg, #2a3c4a, #1a2c3a);
}

.player .tier-card {
    border-color: #35ff6b;
    background: linear-gradient(145deg, #2a4a2c, #1a3a1c);
}

.tier-header {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.super-player .tier-header { color: #ff6b35; }
.member .tier-header { color: #35a3ff; }
.player .tier-header { color: #35ff6b; }

.tier-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.tier-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #cccccc;
}

.tier-amount {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-top: 15px;
}

.super-player .tier-amount { color: #ff6b35; }
.member .tier-amount { color: #35a3ff; }
.player .tier-amount { color: #35ff6b; }

.tier-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, #ff6b35, #35a3ff, #35ff6b);
    margin: 20px 0;
}

/* Downline System */
.downline-system {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.system-steps {
    display: grid;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 50px;
    border: 1px solid white;
    border-radius: 10px;
    padding: 40px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content {
    width: 100%;
    max-width: 500px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6b35;
}

.step-content p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Tutorial Section */
.tutorial {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.tutorial-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.tutorial-card:hover {
    transform: translateY(-5px);
}

.tutorial-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.tutorial-card p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.video-placeholder {
    background: linear-gradient(135deg, #4a0e4e, #2e1065);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 3rem;
    color: #ff0000;
}

.video-placeholder span {
    color: white;
    font-weight: 600;
}

/* Games Section */
.games {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.game-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6b35;
}

.game-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.faq-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 30px 25px;
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0 30px;
    border-top: 1px solid #333;
}

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

.footer-section h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 20px;
}

.register-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.footer-copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-cards {
        gap: 10px;
    }
    
    .card {
        width: 80px;
        height: 120px;
    }
    
    .card-symbol {
        font-size: 40px;
    }
    
    .card-corner {
        font-size: 16px;
        top: 10px;
        left: 10px;
    }
    
    .gaming-features {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tier-visualization {
        flex-direction: column;
        align-items: center;
    }
    
    .tier-line {
        width: 60px;
        height: 3px;
        transform: rotate(90deg);
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tutorial-grid {
        grid-template-columns: 1fr;
    }
    
    .tutorial-card {
        min-width: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .tier-card {
        min-width: 250px;
        padding: 20px;
    }
    
    .tutorial-card {
        padding: 30px 20px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        padding: 30px 20px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}


/* Subpages Specific Styles */

/* Hero Section for Subpages */
.subpage-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.subpage-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.slots-hero {
    background: linear-gradient(135deg, #2a0a2a 0%, #4a1a4a 50%, #3a2a5a 100%);
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
}

/* Popular Games Section */
.popular-games, .popular-slots {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.game-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.game-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
}

.baccarat-bg {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.roulette-bg {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.blackjack-bg {
    background: linear-gradient(135deg, #10b981, #059669);
}

.game-info {
    padding: 30px;
}

.game-info h3 {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.game-info p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.play-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Live Dealer Features */
.live-dealer-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.feature-card, .slot-feature-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover, .slot-feature-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.spin-icon { background: linear-gradient(135deg, #10b981, #059669); }
.search-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.chart-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.cart-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.trophy-icon { background: linear-gradient(135deg, #eab308, #ca8a04); }
.mobile-icon { background: linear-gradient(135deg, #ec4899, #be185d); }

.feature-card h3, .slot-feature-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-card p, .slot-feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Live Dealer Games */
.live-dealer-games {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.dealer-game-card {
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.baccarat-theme {
    background: linear-gradient(135deg, #ff9500, #ff6b35);
}

.roulette-theme {
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
}

.dragon-theme {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.blackjack-theme {
    background: linear-gradient(135deg, #84cc16, #65a30d);
}

.dealer-game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dealer-game-card .game-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    display: block;
}

.dealer-game-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.dealer-game-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Top Providers */
.top-providers {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.provider-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.provider-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.provider-logo {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.provider-name {
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.provider-card h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.provider-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Slots WePlay */
.slots-weplay {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.weplay-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.weplay-slot-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.weplay-slot-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.slot-image {
    height: 220px;
    position: relative;
}

.slot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
}

.mega-win .slot-placeholder {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.fortune-spin .slot-placeholder {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.golden-dragon .slot-placeholder {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}

.slot-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 15px;
}

.slot-info {
    padding: 30px;
}

.slot-info h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.slot-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.slot-stats span {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.slot-info p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Call to Action */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    text-align: center;
}

.slots-cta {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: white;
    color: #ff6b35;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.slots-cta .cta-btn.primary {
    color: #8b5cf6;
}

/* Floating Elements Animation */
.casino-icon, .slot-icon {
    animation: floatCasino 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes floatCasino {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-15px) rotate(90deg) scale(1.1); 
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-25px) rotate(180deg) scale(1); 
        opacity: 0.3;
    }
    75% { 
        transform: translateY(-15px) rotate(270deg) scale(1.1); 
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .games-showcase, .weplay-slots-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid, .slots-features-grid {
        grid-template-columns: 1fr;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .dealer-games-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .subpage-hero {
        padding: 100px 0 60px;
    }
    
    .game-info, .slot-info {
        padding: 20px;
    }
    
    .feature-card, .slot-feature-card {
        padding: 30px 20px;
    }
    
    .provider-card {
        padding: 30px 20px;
    }
    
    .dealer-game-card {
        padding: 30px 20px;
    }
}

/* Additional animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Loading states */
.game-placeholder, .slot-placeholder {
    position: relative;
    overflow: hidden;
}

.game-placeholder::after, .slot-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Sports Hero */
.sports-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #1d4ed8 100%);
}

/* 4D Hero */
.fourd-hero {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #6d28d9 100%);
}

/* Sports & 4D Specific Cards */
.sport-card, .story-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sport-card:hover, .story-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.sport-image {
    height: 220px;
    position: relative;
}

.sport-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.football-bg { background: linear-gradient(135deg, #10b981, #059669); }
.basketball-bg { background: linear-gradient(135deg, #f59e0b, #d97706); }
.tennis-bg { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.sport-info {
    padding: 30px;
}

.sport-info h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.sport-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.sport-stats span {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.sport-info p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Betting Markets */
.betting-markets {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.market-card {
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.handicap-theme { background: linear-gradient(135deg, #ef4444, #dc2626); }
.over-under-theme { background: linear-gradient(135deg, #10b981, #059669); }
.first-half-theme { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.correct-score-theme { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.mix-parlay-theme { background: linear-gradient(135deg, #f59e0b, #d97706); }
.live-betting-theme { background: linear-gradient(135deg, #ec4899, #be185d); }

.market-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.market-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    display: block;
}

.market-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.market-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Sportsbook Features */
.sportsbook-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.lightning-icon { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.shield-icon { background: linear-gradient(135deg, #10b981, #059669); }
.cashout-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.streaming-icon { background: linear-gradient(135deg, #ec4899, #be185d); }

/* Sports CTA */
.sports-cta {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

/* 4D Results Table */
.fourd-results-table {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.results-wrapper {
    margin-top: 60px;
    overflow-x: auto;
}

.results-table {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    overflow: hidden;
    min-width: 800px;
}

.table-header {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr 1.5fr 1fr;
    min-height: 60px;
}

.table-cell {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 500;
}

.table-header .table-cell {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table-body .table-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-body .table-row:hover {
    background: rgba(255, 107, 53, 0.05);
}

.provider-name {
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.provider-name.magnum { background: #e11d48; color: white; }
.provider-name.sports-toto { background: #059669; color: white; }
.provider-name.da-ma-cai { background: #1d4ed8; color: white; }

.prize-number {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.prize-number.first {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

.special-numbers, .consolation-numbers {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #cccccc;
}

.draw-date {
    font-weight: 600;
    color: #ff6b35;
}

/* 4D Providers */
.fourd-providers {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.magnum-logo { background: linear-gradient(135deg, #e11d48, #be185d); }
.sports-toto-logo { background: linear-gradient(135deg, #059669, #047857); }
.da-ma-cai-logo { background: linear-gradient(135deg, #1d4ed8, #1e40af); }
.singapore-logo { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.cashsweep-logo { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.sabah-logo { background: linear-gradient(135deg, #f59e0b, #d97706); }

/* How to Play 4D */
.how-to-play-4d {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

/* Success Stories */
.success-stories {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 25px 30px 0;
}

.winner-avatar {
    font-size: 3rem;
    color: #ff6b35;
}

.winner-info h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.winner-info span {
    color: #cccccc;
    font-size: 0.9rem;
}

.win-amount {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    margin-left: auto;
}

.story-content {
    padding: 0 30px;
    margin-bottom: 20px;
}

.story-content p {
    color: #cccccc;
    line-height: 1.6;
    font-style: italic;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    padding-top: 20px;
}

.win-date {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
}

.rating {
    color: #fbbf24;
}

.rating i {
    margin-right: 2px;
}

/* 4D CTA */
.fourd-cta {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

/* Sports & 4D Floating Icons */
.sports-icon, .fourd-icon {
    animation: floatSports 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes floatSports {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg) scale(1.2); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg) scale(1); 
        opacity: 0.3;
    }
    75% { 
        transform: translateY(-20px) rotate(270deg) scale(1.2); 
        opacity: 0.6;
    }
}

/* Popular Sports Section */
.popular-sports {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.sports-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .markets-grid {
        grid-template-columns: 1fr;
    }
    
    .play-steps {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .results-wrapper {
        padding: 0 20px;
    }
    
    .table-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .table-cell {
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 20px;
    }
    
    .table-cell:before {
        content: attr(data-label);
        font-weight: 700;
        margin-right: 10px;
        color: #ff6b35;
        min-width: 120px;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .story-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .win-amount {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .story-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Agent Hero */
.agent-hero {
    background: linear-gradient(135deg, #4c1d95 0%, #1e1b4b 50%, #0f172a 100%);
}


/* TV Hero */
.tv-hero {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 50%, #9d174d 100%);
}

/* Agent Program Section */
.agent-program {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.program-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.program-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.program-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* How Agent Works */
.how-agent-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.agent-mechanism {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mechanism-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mechanism-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.win-card {
    background: linear-gradient(145deg, #064e3b, #022c22);
    border-color: #10b981;
}

.lose-card {
    background: linear-gradient(145deg, #7c2d12, #451a03);
    border-color: #f59e0b;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.win-card .card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.lose-card .card-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.mechanism-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.mechanism-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-highlight {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Commission Mechanism */
.commission-mechanism {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.commission-table-wrapper {
    margin-top: 60px;
    overflow-x: auto;
}

.commission-table {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    overflow: hidden;
    min-width: 900px;
}

.commission-table .table-header {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.commission-table .table-row {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr 2.5fr;
    min-height: 60px;
}

.positive-amount {
    color: #10b981;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 15px;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.negative-amount {
    color: #ef4444;
    font-weight: 700;
    background: rgba(239, 68, 68, 0.1);
    padding: 8px 15px;
    border-radius: 10px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.final-amount {
    color: #f59e0b;
    font-weight: 700;
    background: rgba(245, 158, 11, 0.1);
    padding: 8px 15px;
    border-radius: 10px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Agent Benefits */
.agent-benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.benefit-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.passive-income .benefit-icon { background: linear-gradient(135deg, #10b981, #059669); }
.commission-system .benefit-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.professional-support .benefit-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.marketing-materials .benefit-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.real-time-tracking .benefit-icon { background: linear-gradient(135deg, #eab308, #ca8a04); }
.flexible-payout .benefit-icon { background: linear-gradient(135deg, #ec4899, #be185d); }

.benefit-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Agent CTA */
.agent-cta {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* TV Features */
.tv-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.tv-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tv-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tv-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.tv-image {
    height: 220px;
    position: relative;
}

.tv-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
}

.free-streaming .tv-placeholder {
    background: linear-gradient(135deg, #10b981, #059669);
}

.no-ads .tv-placeholder {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.hd-quality .tv-placeholder {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.tv-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 15px;
}

.tv-info {
    padding: 30px;
}

.tv-info h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.tv-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.tv-stats span {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tv-info p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Sports Channels */
.sports-channels {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.channel-category {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.channel-category:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.football-category .category-icon { background: linear-gradient(135deg, #10b981, #059669); }
.basketball-category .category-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.tennis-category .category-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.motorsports-category .category-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.boxing-category .category-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.others-category .category-icon { background: linear-gradient(135deg, #eab308, #ca8a04); }

.channel-category h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.channel-category p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.channel-count {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* TV Advanced Features */
.tv-advanced-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-box {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.feature-box .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ec4899, #be185d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.multi-device .feature-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.adaptive-streaming .feature-icon { background: linear-gradient(135deg, #10b981, #059669); }
.live-scores .feature-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.multiple-languages .feature-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.instant-replay .feature-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.schedule-alerts .feature-icon { background: linear-gradient(135deg, #eab308, #ca8a04); }

.feature-box h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-box p {
    color: #cccccc;
    line-height: 1.6;
}

/* TV CTA */
.tv-cta {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

/* Agent & TV Floating Icons */
.agent-icon, .tv-icon {
    animation: floatAgent 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes floatAgent {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg) scale(1.2); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg) scale(1); 
        opacity: 0.3;
    }
    75% { 
        transform: translateY(-20px) rotate(270deg) scale(1.2); 
        opacity: 0.6;
    }
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .agent-mechanism {
        grid-template-columns: 1fr;
    }
    
    .program-grid {
        grid-template-columns: 1fr;
    }

    .img-desktop {
    display: none;
    width: 100%;
    max-width: 1200px;
    border-radius: 10px;
}

.img-mobile {
    display: block;
    width: 100%;
    border-radius: 10px;
}
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .tv-showcase {
        grid-template-columns: 1fr;
    }
    
    .channels-showcase {
        grid-template-columns: 1fr;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    .commission-table-wrapper {
        padding: 0 20px;
    }
    
    .commission-table .table-row {
        grid-template-columns: 1fr;
    }
    
    .commission-table .table-cell {
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 20px;
    }
    
    .commission-table .table-cell:before {
        content: attr(data-label);
        font-weight: 700;
        margin-right: 10px;
        color: #ff6b35;
        min-width: 120px;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .mechanism-card {
        padding: 30px 20px;
    }
    
    .program-card {
        padding: 30px 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .tv-info {
        padding: 20px;
    }
    
    .channel-category {
        padding: 30px 20px;
    }
    
    .feature-box {
        padding: 30px 20px;
    }
}
