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

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

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

.button-download-sect {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #b45309 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.2), rgba(37, 99, 235, 0.2));
}

/* Navigation */
.navbar {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
}

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

.img-mobile {
    display: none;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

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

.brand-we {
    color: #fbbf24;
}

.brand-play {
    color: #ffffff;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: #fbbf24;
}

.btn-primary {
    background: #fbbf24;
    color: #000000;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background: #f59e0b;
}

.nav-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-mobile-toggle span {
    width: 1.5rem;
    height: 0.125rem;
    background: #ffffff;
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 40;
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-mobile a:hover {
    color: #fbbf24;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out;
}

.title-we {
    color: #fbbf24;
}

.title-play {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.2s both;
}


/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

.floating-1 {
    top: 25%;
    left: 2.5rem;
    width: 4rem;
    height: 4rem;
    background: #fbbf24;
    border-radius: 0.5rem;
    transform: rotate(12deg);
}

.floating-2 {
    top: 33.33%;
    right: 4rem;
    width: 3rem;
    height: 3rem;
    background: #60a5fa;
    border-radius: 50%;
    animation-delay: 2s;
}

.floating-3 {
    bottom: 25%;
    left: 25%;
    width: 5rem;
    height: 5rem;
    border: 0.25rem solid #fbbf24;
    border-radius: 0.5rem;
    transform: rotate(-12deg);
    animation-delay: 1s;
}

/* Gaming Section */
.gaming-section {
    background: #0f172a;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;

}

.gaming-section::before {
    content: '';
    position: absolute;
    inset: 0;
}

.gaming-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 20px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.mobile-mockup {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone {
    width: 20rem;
    height: 37.5rem;
    background: linear-gradient(to bottom, #581c87, #0f172a);
    border-radius: 3rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 0.5rem solid #374151;
}

.phone-header {
    background: #7c3aed;
    border-radius: 1.5rem 1.5rem 0 0;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 1rem;
}

.phone-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.usdt-card {
    background: linear-gradient(to right, #10b981, #0d9488);
    padding: 0.75rem;
    border-radius: 0.75rem;
}

.usdt-title {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: bold;
}

.usdt-subtitle {
    color: rgba(16, 185, 129, 0.1);
    font-size: 0.75rem;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.game-slot {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-slot::after {
    content: '';
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.phone-float {
    position: absolute;
    border-radius: 50%;
    animation: bounce 2s ease-in-out infinite;
}

.phone-float-1 {
    top: -1rem;
    right: -1rem;
    width: 3rem;
    height: 3rem;
    background: #fbbf24;
}

.phone-float-2 {
    bottom: -1rem;
    left: -1rem;
    width: 2rem;
    height: 2rem;
    background: #3b82f6;
    animation-delay: 1s;
}


.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.5);
    border-radius: 0.5rem;
    transition: all 0.3s;

}

.feature-item:hover {
    background: #334155;
    transform: scale(1.05);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon p {
    text-align: start;
    font-size: 30px;
}

.gaming-note {
    font-size: 1.125rem;
    color: #9ca3af;
    font-style: italic;
    padding-top: 1.5rem;
}

/* Tier Section */
.tier-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.tier-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

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

.tier-display {
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.tier-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tier-circle {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.tier-player {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

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

.tier-super {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.tier-circle.active {
    transform: scale(1.1);
    opacity: 1;
}

.tier-circle:not(.active) {
    transform: scale(0.9);
    opacity: 0.6;
}

.tier-name {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.875rem;
    text-align: center;
}

.tier-percentage {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: bold;
}

.tier-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.tier-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #6b7280;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.tier-dot.active {
    background: #fbbf24;
}

.tables-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.table-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
}

.table-header {
    color: #ffffff;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem 0.5rem 0 0;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.125rem;
}

.sports-header {
    background: linear-gradient(to right, #7c3aed, #3b82f6);
}

.slots-header {
    background: linear-gradient(to right, #f59e0b, #ea580c);
}

.table-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}



.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.5);
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}


.table-row:hover {
    background: #334155;
}

.table-row span:first-child {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
}

.player-rate {
    color: #60a5fa;
}

.member-rate {
    color: #34d399;
}

.super-rate {
    color: #a78bfa;
}



.legend-item {
    text-align: center;
    font-weight: bold;
}

.player-legend {
    color: #60a5fa;
}

.member-legend {
    color: #34d399;
}

.super-legend {
    color: #a78bfa;
}

/* Downline Section */
.downline-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    position: relative;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}


.step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #fbbf24;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}


.step-content img {
    width: 100%;
    padding-right: 150px;
    margin-top: 50px;
    margin-bottom: 30px;
}

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

.step-arrow {
    text-align: center;
    font-size: 2rem;
    color: #fbbf24;
    margin: 1rem 0;
}

.downline-benefits {
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.downline-benefits h3 {
    color: #fbbf24;
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    transition: all 0.3s;
}

.benefit-item:hover {
    border-color: #fbbf24;
    transform: translateY(-0.25rem);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #d1d5db;
}

/* Tutorial Section */
.tutorial-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.tutorial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1488590528505-98d2b5aba04b');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.tutorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.tutorial-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    transition: all 0.5s;
}

.tutorial-card:hover {
    border-color: #fbbf24;
    transform: scale(1.05);
}

.tutorial-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tutorial-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.register-icon {
    background: linear-gradient(135deg, #fbbf24, #ea580c);
    color: #000000;
}

.download-icon {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
}

.tutorial-header h3 {
    color: #fbbf24;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.tutorial-header p {
    color: #d1d5db;
    line-height: 1.6;
}

.video-placeholder {
    position: relative;
    background: #0f172a;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(234, 88, 12, 0.2));
}

.play-button {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.video-info {
    text-align: center;
    position: relative;
    z-index: 10;
}

.video-title {
    color: #ffffff;
    font-weight: 600;
}

.video-channel {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.tutorial-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.register-btn {
    background: #fbbf24;
    color: #000000;
}

.register-btn:hover {
    background: #f59e0b;
}

.download-btn {
    background: #3b82f6;
    color: #ffffff;
}

.download-btn:hover {
    background: #2563eb;
}

.tutorial-cta {
    text-align: center;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.1), rgba(234, 88, 12, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 32rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.tutorial-cta h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.tutorial-cta p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #1e293b, #0f172a);
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(126, 34, 206, 0.1), rgba(59, 130, 246, 0.1));
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.game-category {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    transition: all 0.5s;
}

.game-category:hover {
    border-color: rgba(251, 191, 36, 0.5);
    transform: scale(1.05);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.category-header h3{
    font-size: 18px !important;
}

.category-icon {
    size: 12px;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to right, #fbbf24, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.category-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
}

.category-description {
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 2rem;
}

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

.game-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.game-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.game-item:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

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

.mega888 {
    background: linear-gradient(135deg, #ef4444, #ec4899);
}

.kiss918 {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

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

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

.evolution {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.asia-gaming {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
}

.wm-casino {
    background: linear-gradient(135deg, #0d9488, #06b6d4);
}

.sexy-gaming {
    background: linear-gradient(135deg, #f43f5e, #ec4899);
}



.game-icon img {
    width: 100%;
    max-width: 100px;
    height: 50px;
}

.game-item h4 {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.125rem;
    position: relative;
    z-index: 10;
}

.sports-betting {
    background: linear-gradient(to right, rgba(34, 197, 94, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
    position: relative;
    z-index: 10;
}

.sports-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sports-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to right, #22c55e, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 2rem;
}

.sports-header h3 {
    color: #ffffff;
    font-size: 1.875rem;
    font-weight: bold;
}

.sports-games {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sports-item {
    background: rgba(30, 41, 59, 0.5);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;

    display: flex;
    align-items: center;
}

.sports-item:hover {
    border-color: #16a34a;
}

.sports-item img {
    width: 100%;
    max-width: 150px !important;
}


.sports-description {
    color: #d1d5db;
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1470813740244-df37b8c1edcb');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.faq-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.faq-icon {
    color: #fbbf24;
    margin-right: 1rem;
}

.faq-container {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(251, 191, 36, 0.5);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(51, 65, 85, 0.3);
    border-radius: 0.75rem;
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    padding-right: 1rem;
    text-align: left;
}

.faq-toggle {
    color: #fbbf24;
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.faq-answer::before {
    content: '';
    display: block;
    height: 1px;
    background: #475569;
    margin-bottom: 1rem;
}

.faq-answer p {
    color: #d1d5db;
    line-height: 1.75;
}

.faq-support {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.1), rgba(234, 88, 12, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.faq-support h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.faq-support p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.support-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.support-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.livechat-btn {
    background: #3b82f6;
    color: #ffffff;
}

.livechat-btn:hover {
    background: #2563eb;
}

/* Footer */
.footer {
    background: #0f172a;
    border-top: 1px solid #1e293b;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 0;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-brand {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

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

.social-links img {
    width: 30px;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 1.25rem;
}

.facebook {
    background: #1877f2;
}

.facebook:hover {
    background: #166fe5;
}

.instagram {
    background: #e4405f;
}

.instagram:hover {
    background: #d73a57;
}

.twitter {
    background: #1da1f2;
}

.twitter:hover {
    background: #0d95e8;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fbbf24;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    color: #fbbf24;
    font-size: 1.125rem;
}

.contact-item span:last-child {
    color: #9ca3af;
}

.footer-cta {
    background: linear-gradient(to right, #f59e0b, #ea580c);
    padding: 3rem 0;
    text-align: center;
}

.footer-cta h3 {
    color: #000000;
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-cta p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.btn-register {
    background: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-register:hover {
    background: #1f2937;
}

.footer-bottom {
    background: #020617;
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-bottom-content p {
    color: #6b7280;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-bottom-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #fbbf24;
}

.footer-disclaimer {
    border-top: 1px solid #1e293b;
    padding-top: 1.5rem;
}

.footer-disclaimer p {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .nav-mobile-toggle {
        display: none;
    }

    
    .img-desktop {
    display: none;
}

.img-mobile {
    display: block;
}

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .gaming-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tier-circles {
        gap: 4rem;
    }

    .tables-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tutorial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .games-grid {
        grid-template-columns: 1fr 1fr;
    }

    .support-buttons {
        flex-direction: row;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .tier-circles {
        flex-direction: column;
        gap: 1rem;
    }

    .tier-circle {
        width: 6rem;
        height: 6rem;
    }

    .games-items {
        grid-template-columns: 1fr;
    }

    .sports-games {
        flex-direction: column;
        align-items: center;
    }
}

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

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

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

/* Navigation Active State */
.nav-desktop a.active {
    color: #fbbf24;
    font-weight: 600;
}

/* Subpage Specific Styles */

/* Live Casino Styles */
.popular-games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.popular-game-card {
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.popular-game-card:hover {
    transform: scale(1.02);
}

.game-image-placeholder {
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.game-overlay {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.game-overlay h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.game-overlay p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.game-btn {
    background: #fbbf24;
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.game-btn:hover {
    background: #f59e0b;
    transform: scale(1.05);
}

.live-dealer-features {
    margin-top: 3rem;
}

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

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #fbbf24;
    transform: translateY(-0.25rem);
}

.feature-card .feature-icon {
    font-size: 2.5rem;
    display: block;
}

.feature-card h3 {
    color: #fbbf24;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

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

.live-dealer-games {
    margin-top: 3rem;
}

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

.dealer-game-card {
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.baccarat-card {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

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

.dragon-card {
    background: linear-gradient(135deg, #06b6d4, #0284c7);
}

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

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

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

.dealer-game-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

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

/* Slots Styles */
.slot-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.slot-feature-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    text-align: center;
    transition: all 0.3s;
}

.slot-feature-card:hover {
    border-color: #fbbf24;
    transform: translateY(-0.25rem);
}

.slot-feature-card .feature-icon {
    font-size: 2.5rem;

    display: block;
}

.slot-feature-card h3 {
    color: #fbbf24;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

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

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

.provider-card {
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.provider-card.mega888 {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.provider-card.pragmatic {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.provider-card.playtech {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.provider-card.kiss918 {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

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

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

.provider-card:hover {
    transform: scale(1.05);
}

.provider-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mini-slot-icon img {
    width: 100%;
    max-width: 40px !important;
}

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

.img-mini {
    width: 100%;
    max-width: 40px;
}

.provider-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

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

.weplay-slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.weplay-slot-card.featured {
    position: relative;
}

.slot-image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #1e3a8a, #7c2d12);
    border-radius: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jackpot-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ef4444;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 0.875rem;
}

.slot-overlay {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.slot-overlay h3 {
    color: #fbbf24;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

.slot-stats span {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.slot-play-btn {
    background: #fbbf24;
    color: #000000;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

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

.slot-collection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slot-mini-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(30, 41, 59, 0.5);
    padding: 1rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    transition: all 0.3s;
}

.slot-mini-card:hover {
    border-color: #fbbf24;
    transform: scale(1.02);
}

.mini-slot-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 0.5rem;
}

.mini-slot-info {
    flex: 1;
}

.mini-slot-info h4 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.mini-rtp {
    color: #10b981;
    font-size: 0.875rem;
}

.mini-play-btn {
    background: #3b82f6;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.mini-play-btn:hover {
    background: #2563eb;
}

/* Sportsbook Styles */
.sportsbook-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.sportsbook-feature-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    text-align: center;
    transition: all 0.3s;
}

.sportsbook-feature-card:hover {
    border-color: #fbbf24;
    transform: translateY(-0.25rem);
}

.sportsbook-feature-card .feature-icon {
    font-size: 2.5rem;

    display: block;
}

.sportsbook-feature-card h3 {
    color: #fbbf24;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

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

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

.market-category {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
}

.market-category h3 {
    color: #fbbf24;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

.market-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.market-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(51, 65, 85, 0.5);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.market-item:hover {
    background: #334155;
}

.market-name {
    color: #ffffff;
    font-weight: 600;
}

.market-desc {
    color: #d1d5db;
    font-size: 0.875rem;
}

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

.advanced-feature-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    transition: all 0.3s;
}

.advanced-feature-card.cash-out {
    border-color: rgba(34, 197, 94, 0.5);
}

.advanced-feature-card.live-streaming {
    border-color: rgba(239, 68, 68, 0.5);
}

.advanced-feature-card.bet-builder {
    border-color: rgba(59, 130, 246, 0.5);
}

.advanced-feature-card.statistics {
    border-color: rgba(251, 191, 36, 0.5);
}

.advanced-feature-card:hover {
    transform: translateY(-0.25rem);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-header .feature-icon {
    font-size: 2rem;
}

.feature-header h3 {
    color: #fbbf24;
    font-size: 1.25rem;
    font-weight: bold;
}

.advanced-feature-card p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-example {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.feature-example span {
    color: #fbbf24;
    font-size: 0.875rem;
    font-style: italic;
}

/* 4D Results Styles */
.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.result-provider-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    overflow: hidden;
}

.provider-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.provider-header.magnum {
    background: linear-gradient(to right, #7c3aed, #3b82f6);
}

.provider-header.toto {
    background: linear-gradient(to right, #f59e0b, #ea580c);
}

.provider-header.damacai {
    background: linear-gradient(to right, #ef4444, #dc2626);
}

.provider-header h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
}

.draw-time {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.result-table {
    padding: 1.5rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.result-row.first-prize {
    background: linear-gradient(to right, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid rgba(251, 191, 36, 0.5);
}

.result-row.second-prize {
    background: linear-gradient(to right, rgba(156, 163, 175, 0.2), rgba(107, 114, 128, 0.2));
    border: 1px solid rgba(156, 163, 175, 0.5);
}

.result-row.third-prize {
    background: linear-gradient(to right, rgba(205, 133, 63, 0.2), rgba(160, 82, 45, 0.2));
    border: 1px solid rgba(205, 133, 63, 0.5);
}

.prize-label {
    color: #ffffff;
    font-weight: 600;
}

.prize-number {
    color: #fbbf24;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.result-consolation {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(51, 65, 85, 0.5);
    border-radius: 0.5rem;
}

.result-consolation .prize-label {
    display: block;
    margin-bottom: 0.75rem;
    color: #d1d5db;
    font-weight: 600;
}

.consolation-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    width: 100%;
}

.consolation-numbers span {
    background: rgba(75, 85, 99, 0.5);
    color: #ffffff;
    padding: 0.5rem;
    text-align: center;
    border-radius: 0.375rem;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

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

.provider-4d-card {
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.provider-4d-card.magnum-card {
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
}

.provider-4d-card.toto-card {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.provider-4d-card.damacai-card {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.provider-4d-card:hover {
    transform: scale(1.05);
}

.provider-4d-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.provider-4d-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.provider-4d-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.provider-stats {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.provider-stats span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

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

.success-story-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    transition: all 0.3s;
}

.success-story-card:hover {
    border-color: #fbbf24;
    transform: translateY(-0.25rem);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.winner-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.winner-info h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.winning-amount {
    color: #10b981;
    font-weight: 600;
    font-size: 0.875rem;
}

.story-content p {
    color: #d1d5db;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.story-date {
    color: #9ca3af;
    font-size: 0.875rem;
    text-align: right;
}

/* Agent Styles */
.agent-info-card {
    background: linear-gradient(to right, rgba(251, 191, 36, 0.1), rgba(234, 88, 12, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.agent-info-card .info-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.agent-info-card h2 {
    color: #fbbf24;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.agent-info-card p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.75;
}

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

.process-step {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    text-align: center;
    transition: all 0.3s;
}

.process-step:hover {
    border-color: #fbbf24;
    transform: translateY(-0.25rem);
}

.process-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
}

.process-content h3 {
    color: #fbbf24;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.process-content p {
    color: #d1d5db;
    line-height: 1.6;
}

.commission-table-container {
    max-width: 48rem;
    margin: 0 auto;
}

.commission-table {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    overflow: hidden;
    margin-bottom: 2rem;
}

.commission-table .table-header {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    color: #000000;
    padding: 1.5rem;
    text-align: center;
}

.commission-table .table-header h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

.table-content {
    padding: 1.5rem;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}



.table-row.header-row {
    background: rgba(51, 65, 85, 0.5);
    font-weight: 600;
    color: #fbbf24;
}

.table-row:not(.header-row) {
    background: rgba(75, 85, 99, 0.3);
}

.table-row:not(.header-row):hover {
    background: rgba(75, 85, 99, 0.5);
}

.table-row.highlight {
    background: linear-gradient(to right, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid rgba(251, 191, 36, 0.5);
}

.commission-rate {
    color: #10b981;
    font-weight: bold;
}

.commission-notes {
    background: rgba(30, 41, 59, 0.5);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
}

.commission-notes h4 {
    color: #fbbf24;
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.commission-notes ul {
    list-style: none;
    padding-left: 0;
}

.commission-notes li {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.commission-notes li::before {
    content: '•';
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.benefit-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: #fbbf24;
    transform: translateY(-0.25rem);
}

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

.benefit-card h3 {
    color: #fbbf24;
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

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

.agent-cta {
    background: linear-gradient(to right, rgba(251, 191, 36, 0.1), rgba(234, 88, 12, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
}

.agent-cta h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.agent-cta p {
    color: #d1d5db;
    margin-bottom: 2rem;
}

/* WePlay TV Styles */
.weplay-tv-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.tv-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tv-screen {
    width: 20rem;
    height: 12rem;
    background: #000000;
    border-radius: 1rem;
    padding: 1rem;
    position: relative;
    border: 0.5rem solid #374151;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tv-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a, #7c2d12);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.live-indicator {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #ef4444;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: bold;
}

.match-info {
    text-align: center;
    color: #ffffff;
}

.match-info h3 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.teams {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

.vs {
    color: #fbbf24;
    font-weight: bold;
}

.score {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fbbf24;
}

.tv-stand {
    width: 8rem;
    height: 2rem;
    background: #374151;
    border-radius: 0 0 1rem 1rem;
    margin-top: -0.5rem;
}

.tv-features h2 {
    margin-bottom: 1.5rem;
}

.tv-feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    transition: all 0.3s;
}

.feature-highlight:hover {
    border-color: #fbbf24;
    transform: scale(1.02);
}

.highlight-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    color: #fbbf24;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.highlight-text p {
    color: #d1d5db;
    font-size: 0.875rem;
}

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

.sport-category-card {
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.sport-category-card.football {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.sport-category-card.badminton {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.sport-category-card.basketball {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.sport-category-card.f1 {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.sport-category-card.mma {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.sport-category-card.esports {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.sport-category-card:hover {
    transform: scale(1.05);
}

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

.sport-category-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.sport-leagues {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.sport-leagues span {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.tv-benefits-comparison {
    margin-bottom: 4rem;
}

.comparison-table {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    color: #000000;
    font-weight: bold;
    padding: 1rem;
}

.competitor-column,
.weplay-column {
    text-align: center;
    font-size: 1.125rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid #475569;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: rgba(51, 65, 85, 0.3);
}

.feature-name {
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.competitor-feature {
    color: #ef4444;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weplay-feature {
    color: #22c55e;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-cta-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.1), rgba(234, 88, 12, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 3rem;
}

.cta-content h3 {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fbbf24;
    font-weight: 600;
}

.cta-icon {
    font-size: 1.25rem;
}

.tv-watch-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.tv-watch-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: scale(1.05);
}

.streaming-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.streaming-device {
    width: 8rem;
    height: 5rem;
    background: #374151;
    border-radius: 0.5rem;
    padding: 0.5rem;
    border: 0.25rem solid #4b5563;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.streaming-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 80%;
}

.content-bar {
    height: 0.5rem;
    background: #fbbf24;
    border-radius: 0.125rem;
    animation: pulse 2s ease-in-out infinite;
}

.content-bar.short {
    width: 60%;
}

.streaming-signals {
    display: flex;
    gap: 0.25rem;
}

.signal {
    width: 0.5rem;
    height: 1rem;
    background: #22c55e;
    border-radius: 0.125rem;
    animation: bounce 1.5s ease-in-out infinite;
}

.signal:nth-child(2) {
    animation-delay: 0.2s;
}

.signal:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .popular-games-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .slot-features-grid,
    .sportsbook-features-grid {
        grid-template-columns: 1fr;
    }

    .weplay-slots-grid {
        grid-template-columns: 1fr;
    }

    .betting-markets-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .consolation-numbers {
        grid-template-columns: repeat(2, 1fr);
    }

    .provider-4d-grid,
    .success-stories-grid,
    .agent-process-grid,
    .agent-benefits-grid {
        grid-template-columns: 1fr;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .weplay-tv-intro,
    .tv-cta-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sports-categories-grid {
        grid-template-columns: 1fr;
    }

    .cta-features {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
    .popular-games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .results-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .advanced-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .advanced-features-grid {
        grid-template-columns: repeat(2, 2fr);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #b45309 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.2), rgba(37, 99, 235, 0.2));
}

/* Navigation */
.navbar {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.brand-we {
    color: #fbbf24;
}

.brand-play {
    color: #ffffff;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: #fbbf24;
}

.btn-primary {
    background: #fbbf24;
    color: #000000;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #f59e0b;
}

.nav-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-mobile-toggle span {
    width: 1.5rem;
    height: 0.125rem;
    background: #ffffff;
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 40;
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-mobile a:hover {
    color: #fbbf24;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 0 1.5rem;
    flex-direction: column;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out;
}

.title-we {
    color: #fbbf24;
}

.title-play {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.2s both;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fbbf24;
    color: #000000;
    padding: 10px 18px;
    border: none;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    animation: fadeIn 1s ease-out 0.4s both;
    text-decoration: none;
}

.btn-download:hover {
    background: #f59e0b;
    transform: scale(1.05);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

.floating-1 {
    top: 25%;
    left: 2.5rem;
    width: 4rem;
    height: 4rem;
    background: #fbbf24;
    border-radius: 0.5rem;
    transform: rotate(12deg);
}

.floating-2 {
    top: 33.33%;
    right: 4rem;
    width: 3rem;
    height: 3rem;
    background: #60a5fa;
    border-radius: 50%;
    animation-delay: 2s;
}

.floating-3 {
    bottom: 25%;
    left: 25%;
    width: 5rem;
    height: 5rem;
    border: 0.25rem solid #fbbf24;
    border-radius: 0.5rem;
    transform: rotate(-12deg);
    animation-delay: 1s;
}




.mobile-mockup {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone {
    width: 20rem;
    height: 37.5rem;
    background: linear-gradient(to bottom, #581c87, #0f172a);
    border-radius: 3rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 0.5rem solid #374151;
}

.phone-header {
    background: #7c3aed;
    border-radius: 1.5rem 1.5rem 0 0;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 1rem;
}

.phone-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.usdt-card {
    background: linear-gradient(to right, #10b981, #0d9488);
    padding: 0.75rem;
    border-radius: 0.75rem;
}

.usdt-title {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: bold;
}

.usdt-subtitle {
    color: rgba(16, 185, 129, 0.1);
    font-size: 0.75rem;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.game-slot {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-slot::after {
    content: '';
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.phone-float {
    position: absolute;
    border-radius: 50%;
    animation: bounce 2s ease-in-out infinite;
}

.phone-float-1 {
    top: -1rem;
    right: -1rem;
    width: 3rem;
    height: 3rem;
    background: #fbbf24;
}

.phone-float-2 {
    bottom: -1rem;
    left: -1rem;
    width: 2rem;
    height: 2rem;
    background: #3b82f6;
    animation-delay: 1s;
}

.gaming-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    padding: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 2rem;
}

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



.gaming-note {
    font-size: 1.125rem;
    color: #9ca3af;
    font-style: italic;
    padding-top: 1.5rem;
}

/* Tier Section */
.tier-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.tier-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.tier-display {
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.tier-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tier-circle {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.tier-player {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

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

.tier-super {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.tier-circle.active {
    transform: scale(1.1);
    opacity: 1;
}

.tier-circle:not(.active) {
    transform: scale(0.9);
    opacity: 0.6;
}

.tier-name {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.875rem;
    text-align: center;
}

.tier-percentage {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: bold;
}

.tier-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.tier-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #6b7280;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.tier-dot.active {
    background: #fbbf24;
}

.tables-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.table-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
}

.table-header {
    color: #ffffff;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem 0.5rem 0 0;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.125rem;
}

.sports-header {
    background: linear-gradient(to right, #7c3aed, #3b82f6);
}

.slots-header {
    background: linear-gradient(to right, #f59e0b, #ea580c);
}

.table-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.5);
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}


.table-row:hover {
    background: #334155;
}

.table-row span:first-child {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
}

.table-row img {
    width: 100%;
    max-width: 75px !important;
}

.player-rate {
    color: #60a5fa;
}

.member-rate {
    color: #34d399;
}

.super-rate {
    color: #a78bfa;
}

.table-legend {
    display: flex !important;
    justify-content: space-evenly !important;
}

.legend-item {
    text-align: center;
    font-weight: bold;
}

.player-legend {
    color: #60a5fa;
}

.member-legend {
    color: #34d399;
}

.super-legend {
    color: #a78bfa;
}

/* Downline Section */
.downline-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    position: relative;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    transition: all 0.3s;
}

.step-item:hover {
    border-color: #fbbf24;
    transform: scale(1.02);
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #fbbf24;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

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

.step-arrow {
    text-align: center;
    font-size: 2rem;
    color: #fbbf24;
    margin: 1rem 0;
}

.downline-benefits {
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.downline-benefits h3 {
    color: #fbbf24;
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    transition: all 0.3s;
}

.benefit-item:hover {
    border-color: #fbbf24;
    transform: translateY(-0.25rem);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #d1d5db;
}

/* Tutorial Section */
.tutorial-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.tutorial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1488590528505-98d2b5aba04b');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.tutorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.tutorial-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    transition: all 0.5s;
}

.tutorial-card:hover {
    border-color: #fbbf24;
    transform: scale(1.05);
}

.tutorial-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tutorial-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.register-icon {
    background: linear-gradient(135deg, #fbbf24, #ea580c);
    color: #000000;
}

.download-icon {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
}

.tutorial-header h3 {
    color: #fbbf24;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.tutorial-header p {
    color: #d1d5db;
    line-height: 1.6;
}

.video-placeholder {
    position: relative;
    background: #0f172a;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(234, 88, 12, 0.2));
}

.play-button {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.video-info {
    text-align: center;
    position: relative;
    z-index: 10;
}

.video-title {
    color: #ffffff;
    font-weight: 600;
}

.video-channel {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.tutorial-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.register-btn {
    background: #fbbf24;
    color: #000000;
}

.register-btn:hover {
    background: #f59e0b;
}

.download-btn {
    background: #3b82f6;
    color: #ffffff;
}

.download-btn:hover {
    background: #2563eb;
}

.tutorial-cta {
    text-align: center;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.1), rgba(234, 88, 12, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 32rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.tutorial-cta h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.tutorial-cta p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #1e293b, #0f172a);
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(126, 34, 206, 0.1), rgba(59, 130, 246, 0.1));
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.game-category {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    transition: all 0.5s;
}

.game-category:hover {
    border-color: rgba(251, 191, 36, 0.5);
    transform: scale(1.05);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to right, #fbbf24, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.category-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
}

.category-description {
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 2rem;
}

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

.game-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.game-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.game-item:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

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

.mega888 {
    background: linear-gradient(135deg, #ef4444, #ec4899);
}

.kiss918 {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

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

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

.evolution {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.asia-gaming {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
}

.wm-casino {
    background: linear-gradient(135deg, #0d9488, #06b6d4);
}

.sexy-gaming {
    background: linear-gradient(135deg, #f43f5e, #ec4899);
}

.game-icon {
    width: 100%;
    

    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 10;
    font-size: 1.5rem;
}

.game-item h4 {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.125rem;
    position: relative;
    z-index: 10;
}

.sports-betting {
    background: linear-gradient(to right, rgba(34, 197, 94, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
    position: relative;
    z-index: 10;
}

.sports-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sports-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to right, #22c55e, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 2rem;
}

.sports-header h3 {
    color: #ffffff;
    font-size: 1.875rem;
    font-weight: bold;
}

.sports-games {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}




.sports-description {
    color: #d1d5db;
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1470813740244-df37b8c1edcb');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.faq-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.faq-icon {
    color: #fbbf24;
    margin-right: 1rem;
}

.faq-container {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(251, 191, 36, 0.5);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(51, 65, 85, 0.3);
    border-radius: 0.75rem;
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    padding-right: 1rem;
    text-align: left;
}

.faq-toggle {
    color: #fbbf24;
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.faq-answer::before {
    content: '';
    display: block;
    height: 1px;
    background: #475569;
    margin-bottom: 1rem;
}

.faq-answer p {
    color: #d1d5db;
    line-height: 1.75;
}

.faq-support {
    text-align: center;
    margin-top: 4rem;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.1), rgba(234, 88, 12, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.faq-support h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.faq-support p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.support-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.whatsapp-btn {
    background: #22c55e;
    color: #ffffff;
}

.whatsapp-btn:hover {
    background: #16a34a;
}

.livechat-btn {
    background: #3b82f6;
    color: #ffffff;
}

.livechat-btn:hover {
    background: #2563eb;
}

/* Footer */
.footer {
    background: #0f172a;
    border-top: 1px solid #1e293b;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 0;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-brand {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 1.25rem;
}

.facebook {
    background: #1877f2;
}

.facebook:hover {
    background: #166fe5;
}

.instagram {
    background: #e4405f;
}

.instagram:hover {
    background: #d73a57;
}

.twitter {
    background: #1da1f2;
}

.twitter:hover {
    background: #0d95e8;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fbbf24;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    color: #fbbf24;
    font-size: 1.125rem;
}

.contact-item span:last-child {
    color: #9ca3af;
}

.footer-cta {
    background: linear-gradient(to right, #f59e0b, #ea580c);
    padding: 3rem 0;
    text-align: center;
}

.footer-cta h3 {
    color: #000000;
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-cta p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.btn-register {
    background: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-register:hover {
    background: #1f2937;
}

.footer-bottom {
    background: #020617;
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-bottom-content p {
    color: #6b7280;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-bottom-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #fbbf24;
}

.footer-disclaimer {
    border-top: 1px solid #1e293b;
    padding-top: 1.5rem;
}

.footer-disclaimer p {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    

    .nav-mobile-toggle {
        display: none;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .gaming-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tier-circles {
        gap: 4rem;
    }

    .tables-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tutorial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .games-grid {
        grid-template-columns: 1fr 1fr;
    }

    .support-buttons {
        flex-direction: row;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .tier-circles {
        flex-direction: column;
        gap: 1rem;
    }

    .tier-circle {
        width: 6rem;
        height: 6rem;
    }

    .gaming-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.step-content img {
    padding-right: 0;
}


    .step-item {
        display: flex;
        flex-direction: column;
    }


    .games-items {
        grid-template-columns: 1fr;
    }

    .sports-games {
        flex-direction: column;
        align-items: center;
    }

    .feature-icon {
 
        color: white;
        margin: 0;
        font-weight: bold;
        display: flex;
        align-items: center;
    }

    .button-download-sect {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .btn-download {
        font-size: 15px;
    }

}
