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

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}



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

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

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

.nav-logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    transition: width 0.3s ease;
}

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

.register-btn {
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    animation: spin 8s linear infinite;
}

.decoration.dragon {
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    border-radius: 20px 50% 20px 50%;
    top: 25%;
    right: 20%;
    animation-delay: 0s;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

.decoration.lantern {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 50%, #ffcd3c 100%);
    border-radius: 50% 50% 20px 20px;
    bottom: 30%;
    right: 10%;
    animation-delay: 2s;
    position: relative;
}

.decoration.lantern::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #8b4513;
    border-radius: 50%;
}

.decoration.coin {
    background: radial-gradient(circle, #ffcd3c 40%, #ffa500 70%);
    border-radius: 50%;
    border: 3px solid #b8860b;
    top: 70%;
    left: 15%;
    animation-delay: 4s;
}

.decoration.coin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border: 2px solid #b8860b;
    border-radius: 50%;
}

.decoration.bamboo {
    background: linear-gradient(90deg, #228b22 0%, #32cd32 50%, #228b22 100%);
    border-radius: 15px;
    width: 15px;
    height: 50px;
    bottom: 20%;
    left: 25%;
    animation-delay: 6s;
    position: relative;
}

.decoration.bamboo::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -2px;
    right: -2px;
    height: 2px;
    background: #006400;
    border-radius: 1px;
}

.decoration.bamboo::after {
    content: '';
    position: absolute;
    top: 30px;
    left: -2px;
    right: -2px;
    height: 2px;
    background: #006400;
    border-radius: 1px;
}

.decoration.lotus {
    background: linear-gradient(45deg, #ff69b4, #ffc0cb);
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 85% 60%, 50% 70%, 15% 60%, 0% 35%, 20% 10%);
    top: 40%;
    right: 30%;
    animation-delay: 1s;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
}

.decoration.fan {
    background: linear-gradient(45deg, #dc143c, #ff6347);
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
    border-radius: 50% 50% 0 0;
    bottom: 40%;
    right: 25%;
    animation-delay: 3s;
    transform-origin: bottom center;
}


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

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

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffa500, #ff6b35, #ffcd3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 165, 0, 0.5); }
    50% { text-shadow: 0 0 40px rgba(255, 165, 0, 0.8); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    font-weight: 300;
}

.download-btn {
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.4);
}

.btn-icon {
    font-size: 1.5rem;
}

.hero-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration {
    position: absolute;
    width: 30px;
    height: 30px;
    animation: spin 8s linear infinite;
}

.decoration.circle {
    background: #ffa500;
    border-radius: 50%;
    top: 25%;
    right: 20%;
    animation-delay: 0s;
}

.decoration.diamond {
    background: #ff6b35;
    transform: rotate(45deg);
    bottom: 30%;
    right: 10%;
    animation-delay: 2s;
}

.decoration.spade {
    background: #28a745;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 70%;
    left: 15%;
    animation-delay: 4s;
}

.decoration.heart {
    background: #dc3545;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    bottom: 20%;
    left: 25%;
    animation-delay: 6s;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Gaming App Section */
.gaming-app {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-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);
    transition: left 0.5s ease;
}

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

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
}

.feature-icon.shield {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.feature-icon.users {
    background: linear-gradient(45deg, #007bff, #0056b3);
}

.feature-icon.headphones {
    background: linear-gradient(45deg, #6f42c1, #5a2d91);
}

.feature-icon.bell {
    background: linear-gradient(45deg, #ffc107, #e0a800);
}

.feature-icon.credit-card {
    background: linear-gradient(45deg, #17a2b8, #138496);
}

.feature-icon.phone {
    background: linear-gradient(45deg, #fd7e14, #dc6300);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffa500;
    font-weight: 600;
}

.feature-desc {
    color: #e0e0e0;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-desc {
    opacity: 1;
}

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

.tiers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-card.super-player {
    border-color: #e91e63;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
}

.tier-card.member {
    border-color: #ffa500;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
}

.tier-card.player {
    border-color: #28a745;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
}

.tier-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.3);
}

.tier-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.super-player .tier-badge {
    background: #e91e63;
    color: white;
}

.member .tier-badge {
    background: #ffa500;
    color: white;
}

.player .tier-badge {
    background: #28a745;
    color: white;
}

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

.tier-details {
    margin-bottom: 2rem;
}

.tier-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-item .label {
    color: #e0e0e0;
}

.tier-item .value {
    color: #ffa500;
    font-weight: 600;
}

.tier-price {
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
}

/* Downline System Section */
.downline-system {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.system-explanation {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid #ffa500;
}

.system-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.system-steps {
    display: grid;
    gap: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

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

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.5);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: #ffa500;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1rem;
}

.step-card p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-details {
    background: rgba(255, 165, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #ffa500;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.step-card:hover .step-details {
    opacity: 1;
    max-height: 200px;
}

.step-details p {
    margin: 0;
    font-style: italic;
    color: #ffcd3c;
}

/* Tutorial Section */
.tutorial {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.tutorial-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.tutorial-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

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

.tutorial-section h3 {
    color: #ffa500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tutorial-section p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.video-placeholder {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    border: 2px dashed rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-placeholder:hover {
    border-color: rgba(255, 165, 0, 0.8);
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

/* Games Section */
.games {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.5);
}

.game-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    font-size: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
}



.game-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 165, 0, 0.2), rgba(255, 107, 53, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-image::after {
    opacity: 1;
}

.game-image.live-casino {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.game-image.slots {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.game-image.sports {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.game-image.poker {
    background: linear-gradient(135deg, #8e44ad, #7d3c98);
}

.game-image.lottery {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.game-image.fishing {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.game-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #ffa500;
    font-size: 1.3rem;
    font-weight: 600;
}

.game-card p {
    padding: 0 1.5rem 1.5rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 165, 0, 0.5);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 165, 0, 0.1);
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ffa500;
    font-weight: 600;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 165, 0, 0.2);
}

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

.footer-section h3 {
    color: #ffa500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 165, 0, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #e0e0e0;
}

.footer-register-btn {
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tiers-container {
        grid-template-columns: 1fr;
    }
    
    .tutorial-content {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .download-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .tier-card {
        padding: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
}


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

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

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

.nav-logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a.active,
.nav-menu a:hover {
    color: #ffa500;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    transition: width 0.3s ease;
}

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

.register-btn {
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Page Header */
.page-header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
}

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

.coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #ffcd3c 40%, #ffa500 70%);
    border-radius: 50%;
    border: 3px solid #b8860b;
    animation: float 6s ease-in-out infinite;
}

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

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

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

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

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

.slot-symbol {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    animation: spin 8s linear infinite;
}

.slot-symbol.cherry {
    background: linear-gradient(45deg, #ff6b6b, #ff4757);
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.slot-symbol.lemon {
    background: linear-gradient(45deg, #ffa502, #ff9500);
    top: 65%;
    right: 20%;
    animation-delay: 2s;
}

.slot-symbol.diamond {
    background: linear-gradient(45deg, #3742fa, #2f3542);
    bottom: 35%;
    left: 25%;
    animation-delay: 4s;
}

.slot-symbol.seven {
    background: linear-gradient(45deg, #2ed573, #1dd1a1);
    top: 45%;
    right: 35%;
    animation-delay: 1s;
}

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.header-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.header-icon {
    margin-bottom: 2rem;
}

.casino-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-icon::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 65px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.casino-icon::after {
    content: '♠';
    position: absolute;
    font-size: 24px;
    color: #1a1a2e;
    font-weight: bold;
    z-index: 1;
}

.slots-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slots-icon::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #e74c3c 0deg 45deg,
        #2c3e50 45deg 90deg,
        #e74c3c 90deg 135deg,
        #2c3e50 135deg 180deg,
        #e74c3c 180deg 225deg,
        #2c3e50 225deg 270deg,
        #e74c3c 270deg 315deg,
        #2c3e50 315deg 360deg
    );
}

.slots-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.page-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffa500, #ff6b35, #ffcd3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 165, 0, 0.5); }
    50% { text-shadow: 0 0 40px rgba(255, 165, 0, 0.8); }
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-weight: 500;
}

.page-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #c0c0c0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 165, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.5);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Popular Games */
.popular-games {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

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

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.5);
}

.game-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.game-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 165, 0, 0.2), rgba(255, 107, 53, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-image::after {
    opacity: 1;
}

.game-image.baccarat {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.game-image.roulette {
    background: linear-gradient(135deg, #8e44ad, #7d3c98);
}

.game-image.blackjack {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.game-content {
    padding: 2rem;
}

.game-content h3 {
    color: #ffa500;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.game-content p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.play-btn {
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* Live Dealer Features */
.live-dealer-features {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-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);
    transition: left 0.5s ease;
}

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

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
}

.feature-icon.multi-table {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

.feature-icon.stats {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.feature-icon.dealer-choice {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.feature-icon.language {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.feature-icon.support {
    background: linear-gradient(45deg, #1abc9c, #16a085);
}

.feature-icon.mobile {
    background: linear-gradient(45deg, #34495e, #2c3e50);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffa500;
    font-weight: 600;
}

/* Live Dealer Games */
.live-dealer-games {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

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

.dealer-game-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dealer-game-card.baccarat-card {
    border-color: #e74c3c;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.1) 100%);
}

.dealer-game-card.roulette-card {
    border-color: #8e44ad;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.1) 0%, rgba(125, 60, 152, 0.1) 100%);
}

.dealer-game-card.dragon-tiger-card {
    border-color: #f39c12;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
}

.dealer-game-card.blackjack-card {
    border-color: #2c3e50;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.1) 0%, rgba(52, 73, 94, 0.1) 100%);
}

.dealer-game-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.3);
}

.game-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    position: relative;
}

.game-icon.baccarat-icon {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.game-icon.roulette-icon {
    background: linear-gradient(45deg, #8e44ad, #7d3c98);
}

.game-icon.dragon-tiger-icon {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.game-icon.blackjack-icon {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.dealer-game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

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

/* Slots Specific Styles */
.popular-slots {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

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

.feature-icon.free-spins {
    background: linear-gradient(45deg, #27ae60, #229954);
}

.feature-icon.search-platform {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

.feature-icon.high-rtp {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.feature-icon.buy-feature {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.feature-icon.progressive-jackpot {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.feature-icon.mobile-optimized {
    background: linear-gradient(45deg, #34495e, #2c3e50);
}

/* Top Providers */
.top-providers {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.provider-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

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

.provider-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 15px;
}

.provider-logo.pragmatic {
    background: linear-gradient(45deg, #ff6b35, #ffa500);
}

.provider-logo.netent {
    background: linear-gradient(45deg, #27ae60, #229954);
}

.provider-logo.microgaming {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

.provider-logo.playtech {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.provider-logo.evolution {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.provider-logo.redtiger {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.provider-card h3 {
    color: #ffa500;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.provider-card p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* WEPLAY Slots */
.weplay-slots {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

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

.weplay-slot-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

.weplay-slot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.5);
}

.slot-preview {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slot-preview.classic-slots {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.slot-preview.video-slots {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.slot-preview.progressive-slots {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.slot-preview.megaways {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.slot-info {
    padding: 2rem;
}

.slot-info h3 {
    color: #ffa500;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.slot-info p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.slot-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rtp, .volatility {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.play-now-btn {
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 165, 0, 0.2);
}

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

.footer-section h3 {
    color: #ffa500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 165, 0, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #e0e0e0;
}

.footer-register-btn {
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .dealer-games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .slots-features-grid {
        grid-template-columns: 1fr;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .weplay-slots-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .feature-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        margin: 0 1rem;
    }
}

/* Sportsbook Specific Styles */
.sportsbook-header .floating-sports {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sport-symbol {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    animation: bounce 4s ease-in-out infinite;
}

.sport-symbol.football {
    background: linear-gradient(45deg, #4CAF50, #388E3C);
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.sport-symbol.basketball {
    background: linear-gradient(45deg, #FF9800, #F57C00);
    top: 65%;
    right: 20%;
    animation-delay: 1s;
}

.sport-symbol.tennis {
    background: linear-gradient(45deg, #FFEB3B, #FBC02D);
    bottom: 35%;
    left: 25%;
    animation-delay: 2s;
}

.sport-symbol.esports {
    background: linear-gradient(45deg, #9C27B0, #7B1FA2);
    top: 45%;
    right: 35%;
    animation-delay: 3s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.sportsbook-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sportsbook-icon::before {
    content: '⚽';
    position: absolute;
    font-size: 32px;
    z-index: 1;
}

.popular-sportsbook {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.sportsbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sport-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.5);
}

.sport-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sport-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.sport-icon.football-icon {
    background: linear-gradient(45deg, #4CAF50, #388E3C);
}

.sport-icon.basketball-icon {
    background: linear-gradient(45deg, #FF9800, #F57C00);
}

.sport-icon.esports-icon {
    background: linear-gradient(45deg, #9C27B0, #7B1FA2);
}

.sport-icon.trophy-icon {
    background: linear-gradient(45deg, #FFD700, #FFA000);
}

.sport-icon.medal-icon {
    background: linear-gradient(45deg, #FF6B35, #FF8E53);
}

.sport-card h3 {
    color: #ffa500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sport-card p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sport-btn {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.sport-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

/* Betting Markets */
.betting-markets {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.market-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

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

.market-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
}

.market-card h3 {
    color: #ffa500;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Advanced Sportsbook Features */
.advanced-sportsbook {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.advanced-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advanced-feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-icon.lightning-icon {
    background: linear-gradient(45deg, #FFEB3B, #FBC02D);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature-icon.stats-icon {
    background: linear-gradient(45deg, #2196F3, #1976D2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature-icon.live-icon {
    background: linear-gradient(45deg, #F44336, #D32F2F);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature-icon.parlay-icon {
    background: linear-gradient(45deg, #9C27B0, #7B1FA2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature-icon.odds-icon {
    background: linear-gradient(45deg, #4CAF50, #388E3C);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature-icon.beginner-icon {
    background: linear-gradient(45deg, #FF9800, #F57C00);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.advanced-feature-card h3 {
    color: #ffa500;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.advanced-feature-card p {
    color: #e0e0e0;
    line-height: 1.6;
    text-align: center;
}

/* 4D Results Specific Styles */
.results-header .floating-numbers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.number-ball {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFD700, #FFA000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a2e;
    animation: float 6s ease-in-out infinite;
    border: 3px solid #B8860B;
}

.number-ball:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.number-ball:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.number-ball:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.number-ball:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 4.5s;
}

.results-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD700, #FFA000);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-icon::before {
    content: '🎲';
    position: absolute;
    font-size: 32px;
    z-index: 1;
}

.latest-results {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

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

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.result-card.magnum-card {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 160, 0, 0.1) 100%);
}

.result-card.damacai-card {
    border-color: #8B4513;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(160, 82, 45, 0.1) 100%);
}

.result-card.toto-card {
    border-color: #1E90FF;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(65, 105, 225, 0.1) 100%);
}

.result-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.3);
}

.provider-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff4444;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.result-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.result-card h3 {
    color: #ffa500;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.winning-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    margin: 1rem 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.prize-amount {
    font-size: 1.5rem;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.draw-date {
    color: #ffa500;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.additional-numbers {
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Top 4D Providers */
.top-providers-4d {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.providers-4d-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.provider-4d-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

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

.provider-4d-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
}

.provider-4d-card h3 {
    color: #ffa500;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.provider-4d-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

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

.play-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.play-info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

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

.play-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.play-info-card h3 {
    color: #ffa500;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.play-info-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

.play-steps {
    margin-top: 4rem;
}

.play-steps h3 {
    color: #ffa500;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.play-steps > p {
    color: #e0e0e0;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 1rem;
}

.step-card h4 {
    color: #ffa500;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Winning Stories */
.winning-stories {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.5);
}

.story-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.story-card h3 {
    color: #ffa500;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.story-card p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-quote {
    background: rgba(255, 165, 0, 0.1);
    border-left: 4px solid #ffa500;
    padding: 1rem 1.5rem;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #ffffff;
    position: relative;
}

.story-quote::before {
    content: '"';
    font-size: 3rem;
    color: #ffa500;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: serif;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .sportsbook-grid,
    .results-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .winning-number {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .sport-icons {
        gap: 0.5rem;
    }
    
    .sport-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .winning-number {
        font-size: 2rem;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Agent Specific Styles */
.agent-header .floating-money {
    position: absolute;
    width: 100%;
    height: 100%;
}

.money-symbol {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    animation: floatMoney 5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.money-symbol.dollar {
    background: linear-gradient(45deg, #FFD700, #FFA000);
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.money-symbol.yuan {
    background: linear-gradient(45deg, #4CAF50, #388E3C);
    top: 65%;
    right: 20%;
    animation-delay: 1.5s;
}

.money-symbol.percent {
    background: linear-gradient(45deg, #FF6B35, #FF8E53);
    bottom: 35%;
    left: 25%;
    animation-delay: 3s;
}

.money-symbol.crown {
    background: linear-gradient(45deg, #9C27B0, #7B1FA2);
    top: 45%;
    right: 35%;
    animation-delay: 4.5s;
}

@keyframes floatMoney {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-15px) rotate(120deg) scale(1.1); }
    66% { transform: translateY(-5px) rotate(240deg) scale(0.9); }
}

.agent-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD700, #FFA000);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-icon::before {
    content: '👔';
    position: absolute;
    font-size: 32px;
    z-index: 1;
}

.agent-program-intro {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

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

.agent-step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.agent-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.5);
}

.agent-step-card .step-number1 {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;

    /* Ini yang penting */
    line-height: 1;          /* Reset line height */
    padding: 0;              /* Hindari gangguan padding */
    font-family: sans-serif; /* Pastikan pakai font umum */
}


.agent-step-card .step-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.agent-step-card h3 {
    color: #ffa500;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.agent-step-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

.agent-how-works {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-card.winning-card {
    border-color: #4CAF50;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(56, 142, 60, 0.1) 100%);
}

.comparison-card.losing-card {
    border-color: #F44336;
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(211, 47, 47, 0.1) 100%);
}

.comparison-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.3);
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.comparison-card h3 {
    color: #ffa500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.comparison-card p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.commission-badge {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
}

.commission-badge.positive {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
}

.commission-badge.negative {
    background: linear-gradient(45deg, #F44336, #EF5350);
    color: white;
}

.commission-mechanism {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.commission-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    border-radius: 15px;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.commission-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
}

.commission-table th {
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    color: white;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.commission-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 165, 0, 0.1);
    color: #e0e0e0;
}

.commission-table tr:hover {
    background: rgba(255, 165, 0, 0.1);
}

.commission-table .positive-amount {
    color: #4CAF50;
    font-weight: 600;
}

.commission-table .negative-amount {
    color: #F44336;
    font-weight: 600;
}

.commission-table .monthly-total {
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.commission-table .total-amount {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.2rem;
}

.agent-benefits {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    color: #ffa500;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.join-agent-cta {
    text-align: center;
    margin-top: 4rem;
}

.join-agent-btn {
    background: linear-gradient(45deg, #FFD700, #FFA000);
    color: #1a1a2e;
    border: none;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.join-agent-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.cta-note {
    color: #ffa500;
    font-size: 1rem;
    font-weight: 500;
}

/* WeplayTV Features Section */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.icon {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

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

.icon-2 {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.icon-3 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

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

.icon-5 {
    top: 70%;
    left: 60%;
    animation-delay: 4s;
}

.icon-6 {
    top: 15%;
    left: 70%;
    animation-delay: 5s;
}

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

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

.header-icon {
    margin-bottom: 2rem;
}

.tv-icon {
    font-size: 4rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.weplaytv-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #ff6b35);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.feature-card:hover::before {
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

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

.feature-card.animated {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

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

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff6b35;
    font-weight: 600;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Live Sports Section */
.live-sports {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f3460 0%, #1e3c72 100%);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sport-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sport-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.6);
}

.sport-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

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

.sport-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
}

.sport-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ff4757;
    font-weight: 600;
    font-size: 0.9rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff4757;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

.upcoming-indicator {
    color: #ffa502;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 5px 15px;
    background: rgba(255, 165, 2, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 165, 2, 0.3);
}

/* Join Channel Section */
.join-channel {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
}

.join-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(15px);
}

.join-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #ff6b35);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.join-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.join-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    justify-content: center;
    align-items: center;      /* sejajarkan vertikal */
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;          /* tambahkan agar teks sejajar rapi */
}

.benefit-icon {
    color: #2ed573;
    font-size: 1.2rem;
    display: flex;             /* agar icon presisi */
    align-items: center;       /* sejajarkan isi icon ke tengah */
    justify-content: center;
    margin-bottom: -1px;
}


.join-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.join-btn:hover::before {
    left: 100%;
}

.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}