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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #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;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.rolling-info-img img{
    width: 100%;
    max-width: 1200px;
    border-radius: 10px;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: #00ff88;
}

.nav-logo img {
    width: 100%;
    max-width: 150px;
}

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

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

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

.nav-menu a:hover {
    color: #00ff88;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #00ff88;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: #00ff88;
    color: #000;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.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;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
    padding: 100px 0 50px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 40px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.element-4 {
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00ff88, #00cc6a, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite;
    word-break: keep-all;
    white-space: nowrap;
    overflow: visible;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    color: #00ff88;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.primary-cta {
    background: #00ff88;
    color: #000;
    padding: 18px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-cta:hover {
    background: #00cc6a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 255, 136, 0.4);
}

.secondary-cta {
    border: 2px solid #00ff88;
    color: #00ff88;
    padding: 16px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary-cta:hover {
    background: #00ff88;
    color: #000;
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: #666;
    margin-top: 10px;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 6rem);
        white-space: normal;
        word-break: break-word;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.4rem);
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .tier-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .tutorial-grid {
        grid-template-columns: 1fr;
    }
    
    .downline-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 15vw, 4.5rem);
    }
    
    .tutorial-grid {
        grid-template-columns: 1fr;
    }
    
    .tutorial-item {
        min-width: auto;
    }
}

.primary-cta {
    background: #00ff88;
    color: #000;
    padding: 18px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-cta:hover {
    background: #00cc6a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 255, 136, 0.4);
}

.secondary-cta {
    border: 2px solid #00ff88;
    color: #00ff88;
    padding: 16px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary-cta:hover {
    background: #00ff88;
    color: #000;
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: #666;
    margin-top: 10px;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* All-in-One Section */
.all-in-one {
    padding: 120px 0;
    background: #0f0f0f;
    position: relative;
}

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

.section-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 40px;
}

.features-content h3 {
    font-size: 1.8rem;
    color: #00ff88;
    margin-bottom: 20px;
    font-weight: 700;
}

.features-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.7;
}

.highlight {
    color: #00ff88 !important;
    font-weight: 600;
    font-style: italic;
}

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

.section-title-center {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.tier-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.tier-card:hover::before {
    transform: translateX(100%);
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.tier-card.bronze:hover {
    border: 2px solid #cd7f32;
}

.tier-card.silver:hover {
    border: 2px solid #c0c0c0;
}

.tier-card.gold:hover {
    border: 2px solid #ffd700;
}

.tier-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

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

.tier-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit {
    background: rgba(0, 255, 136, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    color: #00ff88;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

/* Downline System */
.downline-system {
    padding: 120px 0;
    background: #0a0a0a;
}

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


.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content img {
    width: 100%;
    max-width: 550px;
    
    margin-top: 50px;
    margin-bottom: 30px;
   
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* Tutorial Section */
.tutorial-section {
    padding: 120px 0;
    background: #0f0f0f;
}

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

.tutorial-item {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.tutorial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tutorial-item h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.tutorial-item p {
    color: #cccccc;
    line-height: 1.6;
}

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

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

.game-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.6s ease;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.game-image {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.game-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: #0a0a0a;
}

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

.faq-item {
    background: #1a1a1a;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.1);
}

.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 {
    color: #00ff88;
}

.faq-icon {
    font-size: 24px;
    color: #00ff88;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

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

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 30px;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-subtitle em {
    color: #00ff88;
    font-style: italic;
}

.cta-button-large {
    background: #00ff88;
    color: #000;
    padding: 20px 50px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button-large:hover {
    background: #00cc6a;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4);
}

/* Footer */
.footer {
    background: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.img-desktop {
    display: block;
}

.img-mobile {
    display: none;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: #00ff88;
}

.text-content {
    display: flex;
    justify-content: center;
}

.text-content img {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
}
.footer-logo img {
    width: 100%;
    max-width: 150px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

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

.footer-column a:hover {
    color: #00ff88;
}

.footer-cta-button {
    background: #00ff88;
    color: #000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-cta-button:hover {
    background: #00cc6a;
    transform: translateY(-2px);
}

.sections-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 14px;
}

.footer-bottom a {
    color: #00ff88;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .tier-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .tutorial-grid {
        grid-template-columns: 1fr;
    }
    
    .downline-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        text-align: start;
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-cta {
        display: flex;
        justify-content: start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .tutorial-grid {
        grid-template-columns: 1fr;
    }
    
    .tutorial-item {
        min-width: auto;
    }
}

/* Scroll Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

.animate-slide-in-up {
    animation: slideInUp 0.8s ease forwards;
}

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

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

::-webkit-scrollbar-thumb {
    background: #00ff88;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc6a;
}


/* Subpages Specific Styling */

/* Common Subpage Hero Styles */
.subpage-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.live-casino-hero {
    background: linear-gradient(135deg, #1a0d2e 0%, #16213e 50%, #0f1419 100%);
}

.slots-hero {
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 50%, #0f1419 100%);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 50px;
    opacity: 0.15;
    animation: floatSubpage 8s ease-in-out infinite;
}

.icon-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 12%;
    animation-delay: 1.5s;
}

.icon-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

.icon-4 {
    top: 60%;
    right: 25%;
    animation-delay: 4.5s;
}

.icon-5 {
    bottom: 15%;
    right: 8%;
    animation-delay: 6s;
}

@keyframes floatSubpage {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translateY(20px) rotate(-3deg) scale(0.9);
    }
    75% {
        transform: translateY(-15px) rotate(2deg) scale(1.05);
    }
}

.hero-content-wrapper {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-main {
    background: linear-gradient(45deg, #ffffff, #00ff88);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.title-sub {
    background: linear-gradient(45deg, #00ff88, #ffffff, #00cc6a);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite reverse;
    margin-top: -20px;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.page-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 20px 50px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-btn:hover {
    background: linear-gradient(135deg, #00cc6a, #00ff88);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

/* Popular Games Section */
.popular-games-section {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.game-card-large {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2);
}

.game-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.game-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.baccarat-bg {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.8), rgba(255, 69, 0, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ff8c00"/><circle cx="50" cy="30" r="15" fill="%23fff" opacity="0.3"/><rect x="30" y="50" width="40" height="20" fill="%23fff" opacity="0.2"/></svg>');
}

.roulette-bg {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.8), rgba(139, 0, 0, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23dc143c"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23fff" stroke-width="3" opacity="0.4"/><circle cx="50" cy="50" r="5" fill="%23fff" opacity="0.6"/></svg>');
}

.blackjack-bg {
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.8), rgba(0, 0, 139, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23191970"/><rect x="20" y="30" width="25" height="35" rx="5" fill="%23fff" opacity="0.3"/><rect x="55" y="30" width="25" height="35" rx="5" fill="%23fff" opacity="0.3"/></svg>');
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.game-card-large:hover .game-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.game-overlay h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.game-overlay p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.5;
}

.play-now-btn {
    background: #00ff88;
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-now-btn:hover {
    background: #00cc6a;
    transform: scale(1.05);
}

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

.section-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.content-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 40px;
}

.dealer-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    border-left: 4px solid #00ff88;
    transition: all 0.3s ease;
}

.feature-row:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(10px);
}

.feature-row .feature-icon {
    font-size: 24px;
    margin-top: 5px;
}

.feature-text h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-text p {
    color: #cccccc;
    line-height: 1.5;
}

.content-visual {
    position: relative;
}

.dealer-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dealer-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dealer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
}

.dealer-image {
    height: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
}



.baccarat-dealer {
    background: url('https://wp.techies.my/assets/img/live-casino-baccarat.jpg');
    background-size: cover;
}

.roulette-dealer {
    background: url('https://wp.techies.my/assets/img/live-casino-roulette.jpeg');
    background-size: cover;
}

.dragon-tiger-dealer {
    background: url('./img/dragon-tiger.jpg');
    background-size: cover;
}

.blackjack-dealer {
    background: url('https://wp.techies.my/assets/img/live-casino-blackjack.jpg');
    background-size: cover;
}

.dealer-info {
    padding: 20px;
}

.dealer-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.dealer-info p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Dealer Features Section */
.dealer-features-section {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.feature-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.feature-icon-large {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* Slots Specific Sections */
.popular-slots-section {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.feature-card-slots {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.feature-card-slots:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
}

.feature-icon-container {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-card-slots .feature-icon-large {
    font-size: 36px;
    color: #000;
    margin: 0;
}

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

.feature-card-slots p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

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

.provider-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.provider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
    border-color: #00ff88;
}

.provider-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.provider-logo img {
    width: 100%;
    max-width: 200px;
    padding: 20px;
   
}

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

.pg-soft {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.microgaming {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.netent {
    background: linear-gradient(135deg, #fc4a1a, #f7b733);
}

.play-n-go {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.red-tiger {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.provider-info h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.provider-info p {
    color: #cccccc;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* WEPLAY Slots Section */
.weplay-slots-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.slots-showcase {
    margin-top: 60px;
}

.slot-category {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 800;
}

.category-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

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

.slot-game-card {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slot-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.slot-image {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hot-slot-1 {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.8), rgba(255, 140, 0, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ff4500"/><circle cx="25" cy="25" r="8" fill="%23ffd700"/><circle cx="75" cy="25" r="8" fill="%23ffd700"/><circle cx="50" cy="75" r="12" fill="%23ff6347"/></svg>');
}

.hot-slot-2 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(255, 165, 0, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ffd700"/><polygon points="50,15 60,35 40,35" fill="%23ff4500"/><rect x="40" y="50" width="20" height="30" fill="%23ff6347"/></svg>');
}

.hot-slot-3 {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8), rgba(75, 0, 130, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%238a2be2"/><circle cx="50" cy="50" r="20" fill="%23ffd700" opacity="0.7"/></svg>');
}

.jackpot-slot-1 {
    background: linear-gradient(135deg, rgba(72, 61, 139, 0.8), rgba(123, 104, 238, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23483d8b"/><polygon points="50,20 55,35 70,35 58,45 63,60 50,50 37,60 42,45 30,35 45,35" fill="%23ffd700"/></svg>');
}

.jackpot-slot-2 {
    background: linear-gradient(135deg, rgba(0, 128, 0, 0.8), rgba(34, 139, 34, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23008000"/><circle cx="30" cy="30" r="10" fill="%23ffd700"/><circle cx="70" cy="30" r="10" fill="%23ffd700"/><circle cx="50" cy="70" r="15" fill="%23ffd700"/></svg>');
}

.jackpot-slot-3 {
    background: linear-gradient(135deg, rgba(139, 0, 139, 0.8), rgba(186, 85, 211, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%238b008b"/><rect x="20" y="40" width="60" height="20" fill="%23ffd700" opacity="0.8"/></svg>');
}

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.slot-game-card:hover .slot-overlay {
    opacity: 1;
}

.slot-info h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.slot-info img {
    width: 100%;
    max-width: 100px;
    border-radius: 10px;
}

.slot-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.rtp, .volatility, .jackpot {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.jackpot {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.3);
    font-weight: 700;
    font-size: 0.9rem;
}

.play-slot-btn {
    background: #00ff88;
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.play-slot-btn:hover {
    background: #00cc6a;
    transform: scale(1.05);
}

/* Join WEPLAY Section */
.join-weplay-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.join-visual {
    position: relative;
    height: 400px;
}

.floating-elements-join {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-element-join {
    position: absolute;
    font-size: 60px;
    opacity: 0.3;
    animation: floatJoin 6s ease-in-out infinite;
}

.floating-element-join.element-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-element-join.element-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-element-join.element-3 {
    bottom: 20%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes floatJoin {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(10deg);
    }
    66% {
        transform: translateY(15px) rotate(-10deg);
    }
}

.join-text {
    text-align: center;
}

.join-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffa500, #ff8c00, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite;
}

.join-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.join-subtitle em {
    color: #00ff88;
    font-style: italic;
}

.join-cta-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 20px 50px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.join-cta-btn:hover {
    background: linear-gradient(135deg, #00cc6a, #00ff88);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

/* Active Navigation Link */
.nav-menu a.active {
    color: #00ff88;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .subpage-hero {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: clamp(3rem, 15vw, 6rem);
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-content-split {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .dealer-showcase {
        grid-template-columns: 1fr;
    }
    
    .games-showcase {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .slots-features-grid,
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .slot-games-grid {
        grid-template-columns: 1fr;
    }
    
    .join-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .join-visual {
        height: 200px;
    }
    
    .floating-element-join {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .popular-games-section,
    .live-dealer-section,
    .dealer-features-section,
    .popular-slots-section,
    .providers-section,
    .weplay-slots-section {
        padding: 80px 0;
    }
    
    .join-weplay-section {
        padding: 80px 0;
    }
    
    .games-showcase,
    .slot-games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card-large {
        height: 250px;
    }
    
    .slot-game-card {
        height: 200px;
    }
}

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

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00cc6a, #00ff88);
}


/* Sportsbook Specific Styles */

/* Hero Section */

.sportsbook-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #2a1810 50%, #0a0a0a 100%);
}

.hero-sportsbook .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-sportsbook .floating-element {
    position: absolute;
    font-size: 40px;
    opacity: 0.15;
    animation: sportFloat 8s ease-in-out infinite;
}

.hero-sportsbook .element-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hero-sportsbook .element-2 {
    top: 70%;
    right: 20%;
    animation-delay: 1.5s;
}

.hero-sportsbook .element-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 3s;
}

.hero-sportsbook .element-4 {
    top: 40%;
    right: 15%;
    animation-delay: 4.5s;
}

.hero-sportsbook .element-5 {
    top: 60%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes sportFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(10deg) scale(1.1);
    }
    50% {
        transform: translateY(0px) rotate(-5deg) scale(0.9);
    }
    75% {
        transform: translateY(15px) rotate(5deg) scale(1.05);
    }
}

/* Animated Figures */
.animated-figures {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.figure {
    position: absolute;
    width: 60px;
    height: 80px;
    opacity: 0.1;
}

.figure-1 {
    top: 20%;
    left: 5%;
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: bounce 4s ease-in-out infinite;
}

.figure-2 {
    top: 60%;
    right: 10%;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: bounce 4s ease-in-out infinite 2s;
}

.figure-3 {
    bottom: 30%;
    left: 30%;
    background: linear-gradient(45deg, #4a90e2, #357abd);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: bounce 4s ease-in-out infinite 1s;
}

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

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

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

.sport-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.sport-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
}

.sport-image {
    height: 200px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sport-icon {
    font-size: 80px;
    z-index: 2;
    position: relative;
}

.sport-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.sport-card:hover .sport-overlay {
    transform: translateX(100%);
}

.sport-content {
    padding: 30px;
}

.sport-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.sport-cta {
    background: #ff6b35;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.sport-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Betting Markets Section */
.betting-markets {
    padding: 120px 0;
    background: #0a0a0a;
}

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

.market-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.market-card:hover::before {
    transform: translateX(100%);
}

.market-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.market-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}

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

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

/* Sportsbook Benefits Section */
.sportsbook-benefits {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.benefit-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6b35, #ff8e53);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.benefit-card:hover::after {
    transform: scaleY(1);
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.1);
}

.benefit-icon {
    font-size: 50px;
    color: #ff6b35;
    margin-bottom: 20px;
    display: block;
}

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

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

/* Active Navigation State */
.nav-menu a.active {
    color: #ff6b35;
}

.nav-menu a.active::after {
    width: 100%;
    background-color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sports-grid,
    .markets-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .sport-card,
    .market-card,
    .benefit-card {
        margin-bottom: 20px;
    }
    
    .hero-sportsbook .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .join-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
}

@media (max-width: 480px) {
    .sports-grid,
    .markets-grid,
    .benefits-grid {
        gap: 20px;
    }
    
    .sport-content,
    .market-card,
    .benefit-card {
        padding: 30px 20px;
    }
    
    .section-title-center {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}


/* 4D Results Specific Styles */

/* Hero Section */
.hero-4d{
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
}


.hero-4d .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-4d .floating-element {
    position: absolute;
    font-size: 40px;
    opacity: 0.15;
    animation: numberFloat 10s ease-in-out infinite;
}

.hero-4d .element-1 { top: 20%; left: 10%; animation-delay: 0s; }
.hero-4d .element-2 { top: 60%; right: 15%; animation-delay: 2s; }
.hero-4d .element-3 { bottom: 30%; left: 20%; animation-delay: 4s; }
.hero-4d .element-4 { top: 40%; right: 25%; animation-delay: 6s; }
.hero-4d .element-5 { top: 70%; left: 60%; animation-delay: 8s; }

@keyframes numberFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-40px) rotate(15deg) scale(1.2); }
    50% { transform: translateY(20px) rotate(-10deg) scale(0.8); }
    75% { transform: translateY(-20px) rotate(5deg) scale(1.1); }
}

/* Animated Numbers */
.animated-numbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.number-float {
    position: absolute;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.1);
    animation: digitDance 12s linear infinite;
}

.number-float:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.number-float:nth-child(2) { top: 20%; right: 10%; animation-delay: 1.2s; }
.number-float:nth-child(3) { top: 40%; left: 15%; animation-delay: 2.4s; }
.number-float:nth-child(4) { top: 60%; right: 20%; animation-delay: 3.6s; }
.number-float:nth-child(5) { bottom: 40%; left: 25%; animation-delay: 4.8s; }
.number-float:nth-child(6) { bottom: 20%; right: 25%; animation-delay: 6s; }
.number-float:nth-child(7) { top: 30%; left: 70%; animation-delay: 7.2s; }
.number-float:nth-child(8) { top: 70%; right: 35%; animation-delay: 8.4s; }
.number-float:nth-child(9) { bottom: 50%; left: 50%; animation-delay: 9.6s; }
.number-float:nth-child(10) { top: 50%; right: 50%; animation-delay: 10.8s; }

@keyframes digitDance {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    25% { transform: translateY(-100px) rotate(90deg); opacity: 0.3; }
    50% { transform: translateY(0px) rotate(180deg); opacity: 0.1; }
    75% { transform: translateY(50px) rotate(270deg); opacity: 0.2; }
    100% { transform: translateY(0px) rotate(360deg); opacity: 0.1; }
}

/* Live Results Banner */
/* Results Table */
.results-table {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.result-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: all 0.4s ease;
}

.result-card.magnum::before { background: linear-gradient(90deg, #ffd700, #ffed4e); }
.result-card.toto::before { background: linear-gradient(90deg, #dc143c, #ff6b6b); }
.result-card.damacai::before { background: linear-gradient(90deg, #4169e1, #6495ed); }

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

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

.provider-info h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.provider-info p {
    color: #cccccc;
    font-size: 0.9rem;
}

.winning-numbers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.number-set {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

.number-set .label {
    color: #cccccc;
    font-weight: 600;
}

.number-set .number {
    color: #ffd700;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Courier New', monospace;
}

/* Providers Section */
.providers-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.provider-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.provider-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.provider-card:hover::after {
    transform: scaleX(1);
}

.provider-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.provider-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

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

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

.historical-note {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.historical-note p {
    color: #ffd700;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
}

/* What is 4D Section */
.what-is-4d {
    padding: 80px 0;
    background: #0a0a0a;
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.description-content p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* How to Play Section */
.how-to-play {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0a2e 100%);
}

.guide-container {
    max-width: 800px;
    margin: 0 auto;
}

.guide-header {
    text-align: center;
    margin-bottom: 60px;
}

.guide-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
}

.guide-header h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.guide-header p {
    color: #cccccc;
    font-size: 1.1rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: rgba(255, 215, 0, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
    transition: all 0.3s ease;
    width: 100%;

}

.step-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
}

.step-number {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.step-content h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
}

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

.section-title-center {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stories-slider {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.story-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 400%;
}

.story-card {
    width: 100%;
    max-width: 720px;
    flex-shrink: 0;
    flex: 0 0 100%;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    margin: 0 15px;
    border: 2px solid transparent;
    transition: all 5s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.story-card.active {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.story-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.winner-info {
    flex: 1;
    min-width: 0;
}

.winner-avatar {
    font-size: 50px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.winner-info h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    word-wrap: break-word;
}

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

.prize-amount {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 1.1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.story-content {
    flex: 1;
    margin-bottom: 20px;
}

.story-content p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.1rem;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.story-numbers {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.story-numbers span {
    color: #ffd700;
    font-weight: 600;
}

.story-numbers strong {
    font-size: 1.5rem;
    font-family: 'Courier New', monospace;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding: 0 20px;
}

.slider-btn {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    color: #ffd700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.slider-btn:hover {
    background: #ffd700;
    color: #000;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffd700;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 215, 0, 0.7);
    transform: scale(1.1);
}


/* Active Navigation State */
.nav-menu a.active {
    color: #ffd700;
}

.nav-menu a.active::after {
    width: 100%;
    background-color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .results-grid,
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .promotional-text {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .story-card {
        margin: 0 10px;
        padding: 30px 20px;
    }
    
    .story-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .slider-controls {
        gap: 20px;
    }
    
    .steps-container .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .banner-image {
        padding: 20px;
    }
    
    .result-card,
    .provider-card {
        padding: 25px 20px;
    }
    
    .number-set .number {
        font-size: 1.5rem;
    }
    
    .section-title-center {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}


/* Agent Page Specific Styles */

/* Agent Hero Section */

.agent-hero {
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 30%, #0a0a0a 70%, #1a1a1a 100%);
}

.agent-hero .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.agent-hero .floating-element {
    position: absolute;
    font-size: 50px;
    opacity: 0.15;
    animation: agentFloat 8s ease-in-out infinite;
}

.agent-hero .element-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.agent-hero .element-2 {
    top: 25%;
    right: 10%;
    animation-delay: 1.5s;
}

.agent-hero .element-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

.agent-hero .element-4 {
    top: 40%;
    right: 25%;
    animation-delay: 4.5s;
}

.agent-hero .element-5 {
    bottom: 15%;
    right: 8%;
    animation-delay: 6s;
}

@keyframes agentFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translateY(15px) rotate(-3deg) scale(0.9);
    }
    75% {
        transform: translateY(-20px) rotate(2deg) scale(1.05);
    }
}

/* Program Info Section */
.program-info {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.program-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.program-highlight {
    margin-top: 60px;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.1), transparent);
    animation: highlightSweep 3s ease-in-out infinite;
}

@keyframes highlightSweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.highlight-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.highlight-card p {
    font-size: 1.3rem;
    color: #ffa500;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
}

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

.work-card {
    background: #1a1a1a;
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.work-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.lose-card {
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.lose-card:hover {
    border-color: #00ff88;
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2);
}

.win-card {
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.win-card:hover {
    border-color: #ffa500;
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.2);
}

.card-icon {
    font-size: 80px;
    margin-bottom: 25px;
    display: block;
}

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

.work-card p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.lose-glow {
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
}

.win-glow {
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
}

.work-card:hover .card-glow {
    opacity: 1;
}

/* Commission Table Section */
.commission-table {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.table-subtitle {
    text-align: center;
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.table-container {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    overflow-x: auto;
    border: 1px solid rgba(255, 165, 0, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.commission-data {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.commission-data th {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: #000;
    padding: 20px 15px;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 3px solid #ff8c00;
}

.commission-data th:first-child {
    border-top-left-radius: 10px;
}

.commission-data th:last-child {
    border-top-right-radius: 10px;
}

.commission-data td {
    padding: 20px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 500;
}

.commission-data tbody tr:hover {
    background: rgba(255, 165, 0, 0.05);
}

.positive {
    color: #00ff88;
    font-weight: 700;
}

.negative {
    color: #ff6b6b;
    font-weight: 700;
}

.table-row {
    transition: all 0.3s ease;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: #0a0a0a;
}

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

.benefit-card {
    background: #1a1a1a;
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(255, 165, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.2);
}

.benefit-icon {
    font-size: 70px;
    margin-bottom: 25px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.6rem;
    color: #ffa500;
    margin-bottom: 20px;
    font-weight: 700;
}

.benefit-card p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefit-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.benefit-card:hover .benefit-glow {
    opacity: 1;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease forwards;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 1s ease forwards;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideRight 1s ease forwards;
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .works-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .table-container {
        padding: 20px;
    }
    
    .commission-data {
        font-size: 0.9rem;
    }
    
    .commission-data th,
    .commission-data td {
        padding: 15px 10px;
    }
    
    .work-card,
    .benefit-card {
        padding: 40px 25px;
    }
    
    .highlight-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .program-info,
    .how-it-works,
    .commission-table,
    .benefits-section,
    .join-agent-section {
        padding: 80px 0;
    }
    
    .works-grid,
    .benefits-grid {
        margin-top: 50px;
    }
    
    .table-container {
        padding: 15px;
        border-radius: 15px;
    }
    
    .commission-data {
        font-size: 0.8rem;
    }
    
    .commission-data th,
    .commission-data td {
        padding: 12px 8px;
    }
}


/* Weplay TV Page Specific Styles */

/* TV Hero Section */
.tv-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0f1419 0%, #1e2a35 30%, #0a0a0a 70%, #1a1a1a 100%);
    overflow: hidden;
    padding: 100px 0 50px;
}

.tv-hero .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tv-hero .floating-element {
    position: absolute;
    font-size: 45px;
    opacity: 0.12;
    animation: tvFloat 10s ease-in-out infinite;
}

.tv-hero .element-1 {
    top: 12%;
    left: 5%;
    animation-delay: 0s;
}

.tv-hero .element-2 {
    top: 20%;
    right: 8%;
    animation-delay: 1s;
}

.tv-hero .element-3 {
    bottom: 35%;
    left: 12%;
    animation-delay: 2s;
}

.tv-hero .element-4 {
    top: 45%;
    right: 20%;
    animation-delay: 3s;
}

.tv-hero .element-5 {
    bottom: 20%;
    right: 5%;
    animation-delay: 4s;
}

.tv-hero .element-6 {
    top: 60%;
    left: 25%;
    animation-delay: 5s;
}

@keyframes tvFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.12;
    }
    20% {
        transform: translateY(-25px) rotate(3deg) scale(1.1);
        opacity: 0.18;
    }
    40% {
        transform: translateY(10px) rotate(-2deg) scale(0.95);
        opacity: 0.08;
    }
    60% {
        transform: translateY(-15px) rotate(1deg) scale(1.05);
        opacity: 0.15;
    }
    80% {
        transform: translateY(5px) rotate(-1deg) scale(0.98);
        opacity: 0.1;
    }
}

/* TV Info Section */
.tv-info {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

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

.tv-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.feature-item {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
}

.feature-item h3 {
    font-size: 1.4rem;
    color: #3b82f6;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-item p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

.tv-description {
    position: relative;
}

.tv-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #3b82f6;
    margin-bottom: 5px;
}

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

/* Sports Categories Section */
.sports-categories {
    padding: 120px 0;
    background: #0a0a0a;
}

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

.sport-card {
    background: #1a1a1a;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sport-card:hover::before {
    opacity: 1;
}

.sport-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
}

.sport-icon {
    font-size: 70px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s ease;
}

.sport-card:hover .sport-icon {
    transform: scale(1.2) rotate(5deg);
}

.sport-card h3 {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-bottom: 15px;
    font-weight: 700;
}

.sport-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease forwards;
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease forwards;
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Staggered Animation Delays */
.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.sport-card:nth-child(1) { animation-delay: 0.1s; }
.sport-card:nth-child(2) { animation-delay: 0.2s; }
.sport-card:nth-child(3) { animation-delay: 0.3s; }
.sport-card:nth-child(4) { animation-delay: 0.4s; }
.sport-card:nth-child(5) { animation-delay: 0.5s; }
.sport-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
    .tv-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .tv-features {
        gap: 30px;
    }
    
    .tv-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .img-desktop {
    display: none;
}

.img-mobile {
    display: block;
}
    
    .sports-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item,
    .sport-card {
        padding: 30px 25px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .tv-info,
    .sports-categories,
    .join-tv-section {
        padding: 80px 0;
    }
    
    .sports-grid {
        margin-top: 50px;
    }
    
    .feature-item,
    .sport-card {
        padding: 25px 20px;
    }
    
    .feature-icon,
    .sport-icon {
        font-size: 50px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Scroll-triggered animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 1s ease forwards;
}
