* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo img {
    height: 59px;
    width: auto;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ffd700;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.join-btn {
    background: linear-gradient(45deg, #000, #1a1a1a);
    color: #ffd700;
    padding: 12px 30px;
    border: 2px solid #ffd700;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.join-btn:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* MOBILE MENU */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-join-btn {
    display: none;
    margin-left: 1rem;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px; /* header ka space */
}

/* SLIDER */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

/* Active slide */
.slide.active {
    opacity: 1;
}

/* Backgrounds */
.slide:nth-child(1) {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('/website/images/banner2.png') center/cover;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('/website/images/banner3.png') center/cover;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('/website/images/banner2.png') center/cover;
}

/* Optional PNG overlay, agar nahi chahiye to poora ::before block hata do */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.slide.active::before {
    opacity: 1;
}

/* Agar aapke pass real base64/PNG hai to yaha lagao, abhi demo blank rakha hai */
.slide:nth-child(1)::before {
    /* background-image: url('data:image/png;base64,...'); */
}

.slide:nth-child(2)::before {
    /* background-image: url('data:image/png;base64,...'); */
}

.slide:nth-child(3)::before {
    /* background-image: url('data:image/png;base64,...'); */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  /*  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);*/
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.8);
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active,
.dot:hover {
    background: #fff;
    transform: scale(1.2);
}

/* Arrows */
.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.arrow {
    background: rgba(0,0,0,0.5);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.arrow:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .join-btn {
        display: none;
    }

    .mobile-join-btn {
        display: inline-block;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 280px;
    }

    .slider-arrows {
        padding: 0 10px;
    }

    .arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    nav {
        padding: 0 5%;
    }
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SECTIONS */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 1000px;
    margin: 0 auto;
}

.bg-dark {
    background: #1a1a1a;
}

/* COLUMNS GRID */
.columns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.column-card {
    background: rgba(255,255,255,0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.column-card:hover {
    transform: translateY(-10px);
    background: rgba(255,215,0,0.1);
    box-shadow: 0 20px 40px rgba(255,215,0,0.2);
}

.card-icon {
    font-size: 3.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.column-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* STMetaXon GRID */
.stMetaXon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255,107,53,0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-image {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
    margin: 1rem auto 1.5rem;
    border: 3px solid rgba(255,215,0,0.3);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* PLANS */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.2);
    transition: all 0.4s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(255,215,0,0.3);
}

.plan-header {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.plan-header.starter { background: linear-gradient(45deg, #667eea, #764ba2); }
.plan-header.active { background: linear-gradient(45deg, #f093fb, #f5576c); }
.plan-header.growth { background: linear-gradient(45deg, #4facfe, #00f2fe); }

.plan-header h3 {
    color: #fff;
    font-size: 1.6rem;
    margin: 0;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffd700;
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-body {
    padding: 2rem;
}

.plan-price {
    font-size: 30px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.plan-body ul {
    list-style: none;
}

.plan-body li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

.plan-body li:before {
    content: "✓";
    color: #ffd700;
    font-weight: bold;
    margin-right: 1rem;
}

/* INCOME TABLE */
.income-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.income-table {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.3);
}

.income-table th,
.income-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.income-table th {
    background: rgba(255,215,0,0.2);
    color: #ffd700;
    font-weight: 600;
}

.income-table td {
    color: #ccc;
}

/* REWARDS */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reward-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,107,53,0.3);
    transition: all 0.4s ease;
}

.reward-card:hover {
    transform: translateY(-10px);
    background: rgba(255,107,53,0.1);
}

.reward-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(255,215,0,0.5);
}

.reward-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;


}

/* BUSINESS MODEL SECTION CSS */
.business-model-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #1f1f1f 50%, #000000 100%);
  color: #f8f8ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.bm-header {
  text-align: center;
  margin-bottom: 50px;
}

.bm-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd900, #ff733c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.bm-subtitle span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e6efff;
  
  padding: 8px 22px;
  background: rgb(0, 0, 0);
  border: 1px solid rgba(253, 216, 4, 0.4);
  border-radius: 25px;
}

.bm-intro {
  font-size: 1.1rem;
  color: #d0d6e6;
  max-width: 650px;
  margin: 0 auto;
  padding: 15px;
  line-height: 1.7;
}

/* Features Grid */
.bm-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Feature Card */
.bm-feature-card {
  background: rgba(0, 0, 0, 0.9);
  border-radius: 18px;
  padding: 30px 25px;
  border: 1px solid rgba(255, 238, 0, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.bm-feature-card:nth-child(1) { 
  animation: cardSlide 0.8s ease 0.5s forwards; 
}
.bm-feature-card:nth-child(2) { 
  animation: cardSlide 0.8s ease 0.7s forwards; 
}
.bm-feature-card:nth-child(3) { 
  animation: cardSlide 0.8s ease 0.9s forwards; 
}
.bm-feature-card:nth-child(4) { 
  animation: cardSlide 0.8s ease 1.1s forwards; 
}
.bm-feature-card:nth-child(5) { 
  animation: cardSlide 0.8s ease 1.3s forwards; 
}

.bm-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border-color: rgba(242, 255, 53, 0.7);
}

.bm-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #ffda35, #f7931e);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  box-shadow: 0 12px 35px rgba(255,107,53,0.4);
  animation: iconPulse 2s ease-in-out infinite;
}

.bm-feature-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f8f8ff;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.bm-progress-line {
  height: 3px;
  background: linear-gradient(90deg, #ffe600, #f7931e);
  border-radius: 2px;
  width: 0%;
  margin: 0 auto;
  animation: lineGrow 1.5s ease 1s forwards;
}

/* Footer */
.bm-footer {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  padding: 25px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 230, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: footerSlide 1s ease 1.2s forwards;
}

.bm-footer p {
  font-size: 1.05rem;
  color: #d8dcee;
  line-height: 1.7;
}

.bm-footer strong {
  color: #ffd66b;
}

/* ANIMATIONS */
@keyframes cardSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes lineGrow {
  to { width: 100%; }
}

@keyframes footerSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .bm-header h2 { font-size: 2.1rem; }
  .bm-features-grid { grid-template-columns: 1fr; gap: 20px; }
  .bm-feature-card { padding: 25px 20px; }
  .bm-icon { width: 65px; height: 65px; font-size: 1.8rem; }
}


/* PARTICIPATION STRUCTURE SECTION */
.ps-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #161616 50%, #000000 100%);
  color: #f8f8ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.ps-header {
  text-align: center;
  margin-bottom: 50px;
}

.ps-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd342, #ffa600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.ps-subtitle span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e8f0ff;
  padding: 8px 22px;
  background: rgba(5, 5, 5, 0.15);
  border: 1px solid rgba(255, 208, 0, 0.4);
  border-radius: 25px;
}

.ps-intro {
  font-size: 1.1rem;
  color: #c8d2e6;
  max-width: 650px;
  margin: 25px auto 0;
  line-height: 1.7;
}

/* Features Grid */
.ps-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.ps-features-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

/* Feature Card */
.ps-feature-card {
  background: rgba(20, 20, 20, 0.9);
  border-radius: 20px;
  padding: 30px 25px;
  border: 1px solid rgba(255, 238, 0, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.ps-feature-card:nth-child(1) { 
  animation: psCardSlide 0.8s ease 0.3s forwards; 
}
.ps-feature-card:nth-child(2) { 
  animation: psCardSlide 0.8s ease 0.5s forwards; 
}
.ps-feature-card:nth-child(3) { 
  animation: psCardSlide 0.8s ease 0.7s forwards; 
}
.ps-feature-card:nth-child(4) { 
  animation: psCardSlide 0.8s ease 0.9s forwards; 
}

.ps-feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  border-color: rgba(255,140,66,0.7);
}

.ps-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #ffe600, #ff6b35);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  box-shadow: 0 12px 35px rgba(255, 220, 66, 0.4);
  animation: psIconPulse 2s ease-in-out infinite;
}

.ps-feature-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f8f8ff;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.ps-progress-line {
  height: 3px;
  background: linear-gradient(90deg, #ffd000, #ff6b35);
  border-radius: 2px;
  width: 0%;
  margin: 0 auto;
  animation: psLineGrow 1.5s ease 1s forwards;
}

/* Footer */
.ps-footer {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 25px;
  background: rgba(37, 37, 37, 0.1);
  border-radius: 16px;
  border: 2px solid rgba(255, 217, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: psFooterSlide 1s ease 1.4s forwards;
}

.ps-footer p {
  font-size: 1.05rem;
  color: #d8dcee;
  line-height: 1.7;
}

/* ANIMATIONS */
@keyframes psCardSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes psIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes psLineGrow {
  to { width: 100%; }
}

@keyframes psFooterSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ps-header h2 { font-size: 2.1rem; }
  .ps-features-grid { grid-template-columns: 1fr; gap: 20px; }
  .ps-feature-card { padding: 25px 20px; }
  .ps-icon { width: 65px; height: 65px; font-size: 1.8rem; }
}


/* RULES LIST */
.rules-list {
    max-width: 800px;
    margin: 0 auto;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ffd700;
}

.rule-item i {
    font-size: 2rem;
    color: #ffd700;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.rule-item h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.cta-primary.large {
    font-size: 1.3rem;
    padding: 1.2rem 4rem;
}

/* ANIMATIONS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

[data-delay] {
    transition-delay: calc(var(--delay, 0) * 0.1s);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .columns-grid,
    .stMetaXon-grid,
    .plans-grid,
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .rule-item {
        flex-direction: column;
        text-align: center;
    }
}



/* ===== VISION SECTION STYLES ===== */

.vision-section {
  background: radial-gradient(circle at top, #000000 0%, #050913 45%, #020308 100%);
  color: #f5f5f5;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

/* moving light behind card */
.vision-section::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 184, 53, 0.55) 0%, transparent 70%);
  top: -80px;
  right: -40px;
  opacity: 0.5;
  filter: blur(2px);
  animation: visionGlow 10s ease-in-out infinite alternate;
}

/* main card */
.vision-block {
  max-width: 100%;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(39, 39, 39, 0.95), rgba(0, 0, 0, 0.98));
  border-radius: 24px;
  padding: 3.2rem 3rem;
  box-shadow: 0 32px 120px rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
/*--About---*/
/* animated border highlight */
    .vision-block::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient(120deg, rgb(255 215 0), rgba(247, 147, 30, 0.3), rgb(184 134 11));
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        animation: borderSweep 3s linear infinite;
    }

.vision-title {
  font-size: 2.1rem;
  margin-bottom: 1.8rem;
  background: linear-gradient(45deg, #f3e300, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vision-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #d5d9e6;
  margin-bottom: 1.3rem;
}

/* base scroll animation state */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* keyframes */
@keyframes borderSweep {
  0%   { opacity: 0; transform: translateX(-10%); }
  20%  { opacity: 1; transform: translateX(0); }
  80%  { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(10%); }
}

@keyframes visionGlow {
  0%   { transform: translate(0,0) scale(1); opacity: 0.35; }
  50%  { transform: translate(-40px,30px) scale(1.1); opacity: 0.6; }
  100% { transform: translate(-80px,10px) scale(1.05); opacity: 0.4; }
}

/* responsive */
@media (max-width: 768px) {
  .vision-block {
    padding: 2.4rem 1.8rem;
    margin: 0 1rem;
  }

  .vision-title {
    font-size: 1.6rem;
  }

  .vision-text {
    font-size: 0.98rem;
  }
}

/* ===== WHY MetaXon SECTION ===== */
.why-MetaXon-section {
  padding: 110px 0;
  background: radial-gradient(circle at top, #313131 0%, #000000 50%, #020308 100%);
  color: #f5f5f5;
}

.why-MetaXon-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.why-MetaXon-text h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffb66a, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-MetaXon-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #d6d9e6;
  margin-bottom: 1.1rem;
}

.why-MetaXon-list {
  list-style: none;
  margin: 1.5rem 0 1.5rem;
  padding: 0;
}

.why-MetaXon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 1.02rem;
  color: #e4e7f3;
}

.bullet-icon {
  font-size: 1.5rem;
  color: #ff6b35;
  line-height: 1;
  margin-top: 2px;
}

.why-MetaXon-foot {
  margin-top: 0.6rem;
  font-weight: 500;
  color: #f0f2ff;
}

/* IMAGE COLUMN + ANIMATION */
.why-MetaXon-image-col {
  display: flex;
  justify-content: center;
}

.why-MetaXon-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.7);
  transform-origin: center;
  animation: cardFloat 6s ease-in-out infinite;
}

.why-MetaXon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* soft glow behind card */
.why-MetaXon-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255,107,53,0.6), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}

/* rotating orbits */
.why-MetaXon-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(255,255,255,0.3);
  pointer-events: none;
}

.why-MetaXon-orbit-1 {
  inset: -14px;
  animation: orbitSpin 13s linear infinite;
}

.why-MetaXon-orbit-2 {
  inset: -32px;
  border-color: rgba(255,107,53,0.6);
  animation: orbitSpin 22s linear infinite reverse;
}

/* scroll reveal base state */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* keyframes */
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(-0.8deg); }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* responsive */
@media (max-width: 900px) {
  .why-MetaXon-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-MetaXon-image-wrapper {
    width: 400px;
    height: 500px;
  }
  .why-MetaXon-text h2 {
    font-size: 2rem;
  }
}

.rank-rewards-section {
  padding: 110px 0;
  background: radial-gradient(circle at top, #000000 0%, #000000 55%, #010208 100%);
  color: #f8f8f8;
}

.rank-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rank-header h2 {
  font-size: 2.7rem;
  letter-spacing: 1px;
  color: #f7d26a;
}

.rank-header p {
  margin-top: 0.8rem;
  color: #d0d4e6;
  font-size: 1.05rem;
}

.rank-card {
  max-width: 1400px;
  margin: 0 auto;
  background: radial-gradient(circle at top left, #000000 0%, #1b1b1b 40%, #000000 100%);
  border-radius: 28px;
  border: 1px solid rgba(255,215,128,0.4);
  box-shadow: 0 30px 120px rgba(0,0,0,0.8);
  padding: 2.8rem 2.4rem 2.4rem;
  position: relative;
  overflow: hidden;
}

/* inner golden stroke */
.rank-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(247,200,95,0.7);
  pointer-events: none;
}

/* subtle animated highlight */
.rank-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 50%;
  height: 180%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.18) 40%,
    transparent 80%
  );
  transform: translateX(-100%) rotate(8deg);
  animation: lightSweep 12s ease-in-out infinite;
  pointer-events: none;
}

.rank-table {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 0.5fr;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2.1rem;
}

.rank-column,
.reward-column {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.rank-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.1rem;
}

.rank-icon {
  font-size: 1.4rem;
  color: #f7c84f;
}

.rank-title {
  color: #f3f3ff;
  font-weight: 600;
}

.reward span {
  color: #dde2ff;
}

.reward-elite span {
  font-weight: 600;
  color: #ffd27a;
}

/* right side small icons */
.reward-icons-column {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
}

.reward-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #f7c84f;
  overflow: hidden;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIcon 5s ease-in-out infinite;
}

.reward-icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* bottom media (flat + car) */
.rank-bottom-media {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.8rem;
}

.rank-flat-img,
.rank-car-img {
  width: 230px;
  height: 120px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 60px rgba(0, 217, 255, 0.75);
}

.rank-flat-img img,
.rank-car-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* soft glow on hover */
.rank-flat-img::after,
.rank-car-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.22), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rank-flat-img:hover::after,
.rank-car-img:hover::after {
  opacity: 1;
}

/* scroll animation base */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* keyframes */
@keyframes lightSweep {
  0%   { transform: translateX(-120%) rotate(8deg); }
  45%  { transform: translateX(120%) rotate(8deg); }
  100% { transform: translateX(120%) rotate(8deg); }
}

@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-4px); }
}

/* responsive */
@media (max-width: 900px) {
  .rank-card {
    padding: 2.2rem 1.4rem 2.1rem;
  }

  .rank-table {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "ranks rewards"
      "icons  icons";
  }

  .reward-icons-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    grid-area: icons;
  }

  .rank-bottom-media {
    flex-direction: column;
    align-items: center;
  }

  .rank-flat-img,
  .rank-car-img {
    width: 260px;
  }
}

@media (max-width: 600px) {
  .rank-table {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .rank-header h2 {
    font-size: 2.1rem;
  }

  .rank-card::before {
    inset: 10px;
  }
}


/* INCOME TYPES SECTION */
.income-types-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #000000 50%, #030e1f 100%);
  color: #f8f8ff;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.it-header {
  text-align: center;
  margin-bottom: 60px;
}

.it-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(45deg, #e9e500, #ff6803);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.it-header p {
  font-size: 1.15rem;
  color: #c8d2e6;
}

/* 2 COLUMN LAYOUT */
.it-left-column,
.it-right-column {
  display: inline-block;
  vertical-align: top;
}

.it-left-column {
  width: 55%;
  padding-right: 40px;
}

.it-right-column {
  width: 40%;
}
-------------------
/* INCOME CARDS */
.it-income-card {
  background: rgba(20,35,55,0.9);
  border-radius: 20px;
  padding: 30px 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(74,222,128,0.3);
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s ease;
}

.it-income-card:nth-child(1) { animation: slideInLeft 0.8s ease 0.3s forwards; }
.it-income-card:nth-child(2) { animation: slideInLeft 0.8s ease 0.5s forwards; }
.it-income-card:nth-child(3) { animation: slideInLeft 0.8s ease 0.7s forwards; }
.it-income-card:nth-child(4) { animation: slideInLeft 0.8s ease 0.9s forwards; }

.it-income-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 70px rgba(74,222,128,0.3);
  border-color: rgba(74,222,128,0.7);
}

/* ANIMATED ICONS */
.it-icon-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.it-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
  margin-top: 25px;
  position: relative;
  box-shadow: 0 10px 30px rgba(74,222,128,0.4);
}

.direct { background: linear-gradient(135deg, #4ade80, #22c55e); animation: pulseGreen 2s ease-in-out infinite; }
.level { background: linear-gradient(135deg, #3b82f6, #1d4ed8); animation: pulseBlue 2.2s ease-in-out infinite; }
.bonus { background: linear-gradient(135deg, #f59e0b, #d97706); animation: pulseGold 2.4s ease-in-out infinite; }
.rank { background: linear-gradient(135deg, #f97316, #ea580c); animation: pulseOrange 2s ease-in-out infinite; }

.it-income-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #f8f8ff;
  text-align: center;
  margin-bottom: 12px;
}

.it-income-card p {
  font-size: 1rem;
  color: #d0d6e6;
  text-align: center;
  line-height: 1.6;
}

/* RIGHT COLUMN PNG IMAGES */
.it-image-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.it-png-placeholder {
  width: 450px;
  height: 200px;
  border-radius: 15px;
  border: 2px dashed rgba(255, 228, 106, 0.959);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,35,55,0.7);
  color: #94a3b8;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.it-png-placeholder:hover {
  border-color: rgba(74,222,128,0.9);
  background: rgba(74,222,128,0.1);
  transform: scale(1.05);
}

.it-png-placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74,222,128,0.4), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.it-png-placeholder:hover::before {
  width: 300px;
  height: 300px;
}


/* FOOTER */
.it-footer {
  margin-top: 30px;
  padding: 20px;
  background: rgba(37, 37, 37, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 217, 0, 0.3);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: footerSlide 0.8s ease 1.2s forwards;
}

.it-footer p {
  font-size: 1rem;
  color: #ffee00;
  font-weight: 500;
}

/* ANIMATIONS */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseGreen { 0%,100%{transform:scale(1);}50%{transform:scale(1.08);} }
@keyframes pulseBlue { 0%,100%{transform:scale(1);}50%{transform:scale(1.06);} }
@keyframes pulseGold { 0%,100%{transform:scale(1);}50%{transform:scale(1.1);} }
@keyframes pulseOrange { 0%,100%{transform:scale(1);}50%{transform:scale(1.07);} }

@keyframes footerSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .it-left-column,
  .it-right-column {
    width: 100%;
    padding-right: 0;
  }
  
  .it-left-column {
    margin-bottom: 40px;
  }
  
  .it-image-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .it-png-placeholder {
    flex: 1 1 45%;
    min-height: 70px;
  }
}

@media (max-width: 768px) {
  .it-header h2 { font-size: 2.1rem; }
  .it-income-card { padding: 25px 20px; margin-bottom: 20px; }
}
-------------------------------------------------------------------
/* BONUS INCOME SECTION */
.bonus-income-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #0a1628 0%, #05101f 50%, #020b1a 100%);
  color: #f8f8ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.bi-header {
  text-align: center;
  margin-bottom: 60px;
}

.bi-header h2 {
  font-size: 2.7rem;
  font-weight: 700;
  background: linear-gradient(45deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.bi-subtitle {
  font-size: 1.25rem;
  color: #d4d9e6;
  font-weight: 500;
}

/* Content Grid */
.bi-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Cards */
.bi-card {
  background: rgba(5, 5, 5, 0.9);
  border-radius: 24px;
  padding: 35px;
  border: 1px solid rgba(245,158,11,0.4);
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  overflow: hidden;
}

.standard-bi {
  animation: slideUpLeft 1s ease 0.4s forwards;
  border-top-left-radius: 8px;
}

.alternate-bi {
  animation: slideUpRight 1s ease 0.6s forwards;
  border-top-right-radius: 8px;
}

.bi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  animation: gradientShift 3s ease infinite;
}

.bi-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.bi-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  border-radius: 2px;
}

/* Requirements List */
.bi-requirements {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bi-req-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: rgba(245,158,11,0.1);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
}

.standard-bi .bi-req-item:nth-child(1) { animation: listSlide 0.6s ease 1s forwards; }
.standard-bi .bi-req-item:nth-child(2) { animation: listSlide 0.6s ease 1.2s forwards; }
.standard-bi .bi-req-item:nth-child(3) { animation: listSlide 0.6s ease 1.4s forwards; }

.bi-req-item:hover {
  transform: translateX(8px);
  background: rgba(245,158,11,0.2);
  box-shadow: 0 10px 30px rgba(245,158,11,0.2);
}

.bi-check {
  font-size: 1.4rem;
  color: #fbbf24;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.bi-req-item span:last-child {
  font-weight: 500;
  color: #e8efff;
}

/* Alternate Qualification */
.bi-highlight {
  text-align: center;
}

.bi-fast-track,
.bi-reward {
  background: rgba(245,158,11,0.15);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 20px;
  border: 2px solid rgba(251,191,36,0.3);
  position: relative;
  overflow: hidden;
}

.bi-fast-track::before,
.bi-reward::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(251,191,36,0.3), transparent);
  animation: rotateGlow 4s linear infinite;
}

.bi-fast-track span:first-child {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 5px;
}

.bi-fast-track .bi-period {
  font-size: 1.1rem;
  color: #f4f4ff;
}

.bi-reward span:first-child {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 8px;
}

.bi-reward .bi-duration {
  font-size: 1.15rem;
  color: #f4f4ff;
  font-weight: 500;
}

.bi-invest {
  font-size: 1rem;
  color: #d4d9e6;
  font-style: italic;
}

/* Footer */
.bi-footer {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 25px 30px;
  background: rgba(245,158,11,0.12);
  border-radius: 18px;
  border: 1px solid rgba(245,158,11,0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: footerSlide 0.8s ease 1.8s forwards;
}

.bi-footer p {
  font-size: 1.05rem;
  color: #fbbf24;
  line-height: 1.7;
}

/* ANIMATIONS */
@keyframes slideUpLeft {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUpRight {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes listSlide {
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes footerSlide {
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .bi-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .standard-bi,
  .alternate-bi {
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  .bi-header h2 { font-size: 2.2rem; }
  .bi-card { padding: 25px 20px; }
}



/* RULES SECTION */
.rules-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #000000 0%, #181818 50%, #000000 100%);
  color: #e8e8ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.rules-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.rules-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(45deg, #fd6500, #ffa600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  position: relative;
}

.rules-icon {
  font-size: 4rem;
  opacity: 0.1;
  position: absolute;
  top: -20px;
  right: -20px;
  animation: floatIcon 4s ease-in-out infinite;
}

/* Rules Grid */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.rules-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Rule Cards */
.rule-card {
  background: rgba(13, 13, 14, 0.9);
  border-radius: 20px;
  padding: 30px 25px;
  border: 1px solid rgba(255, 187, 0, 0.3);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.rule-card:nth-child(1) { animation: ruleSlide 0.8s ease 0.3s forwards; }
.rule-card:nth-child(2) { animation: ruleSlide 0.8s ease 0.5s forwards; }
.rule-card:nth-child(3) { animation: ruleSlide 0.8s ease 0.7s forwards; }
.rule-card:nth-child(4) { animation: ruleSlide 0.8s ease 0.9s forwards; }
.rule-card:nth-child(5) { animation: ruleSlide 0.8s ease 1.1s forwards; }
.rule-card:nth-child(6) { animation: ruleSlide 0.8s ease 1.3s forwards; }
.rule-card:nth-child(7) { animation: ruleSlide 0.8s ease 1.5s forwards; }
.rule-card:nth-child(8) { animation: ruleSlide 0.8s ease 1.7s forwards; }
.rule-card:nth-child(9) { animation: ruleSlide 0.8s ease 1.9s forwards; }
.final-rule { animation: ruleSlide 1s ease 2.1s forwards; }

.rule-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 90px rgba(255, 187, 0, 0.25);
  border-color: rgba(255, 136, 0, 0.6);
}

.rule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(216, 176, 0, 0.253), transparent);
  transition: left 0.7s ease;
}

.rule-card:hover::before {
  left: 100%;
}

/* Rule Number */
.rule-number {
  position: absolute;
  top: -15px;
  left: 25px;
  margin-top: 25px;
  background: linear-gradient(135deg, #efec44, #e65400);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
  animation: numberPulse 2s ease-in-out infinite;
}

.rule-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #e2e8f0;
  padding-left: 15px;
  padding-top: 40px;
}

.final-rule p {
  font-size: 1.1rem;
}

.final-rule strong {
  color: #ff7b00;
}

.final-rule em {
  color: #d1d5db;
  font-style: italic;
}

/* ANIMATIONS */
@keyframes ruleSlide {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes numberPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(239,68,68,0.4); }
  50% { transform: scale(1.1); box-shadow: 0 12px 35px rgba(239,68,68,0.6); }
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .rules-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .rules-header h2 { font-size: 2.1rem; }
  .rule-card { padding: 25px 20px; }
  .rule-number { 
    width: 40px; 
    height: 40px; 
    font-size: 0.85rem; 
    top: -12px;
    left: 20px;
  }
}


/* FULL RESPONSIVE + FULL ANIMATIONS */
.join-section {
  padding: 100px 0;
  background: radial-gradient(ellipse at top, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
  color: #e8e8e8;
  position: relative;
  overflow: hidden;
}

.join-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffd700, #ffed4a, transparent);
  animation: shineLine 4s ease-in-out infinite;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.j-header {
  text-align: center;
  margin-bottom: 60px;
}

.j-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(45deg, #ffd700, #ffed4a, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: headerSlide 1s ease 0.5s forwards;
}

.j-glow-line {
  width: clamp(100px, 25vw, 160px);
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4a);
  border-radius: 2px;
  margin: 0 auto;
  opacity: 0;
  animation: glowLine 1.2s ease 0.8s forwards;
  box-shadow: 0 0 20px rgba(255,215,0,0.6);
}

/* RESPONSIVE GRID - DESKTOP 2x2, MOBILE 1 COLUMN */
.j-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
  max-width: 100%;
}

/* Cards */
.j-card {
  background: rgba(15,15,15,0.95);
  border-radius: 24px;
  padding: 35px 30px;
  border: 1px solid rgba(255,215,0,0.25);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  backdrop-filter: blur(15px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.j-card:nth-child(1) { animation: cardSlide1 0.8s ease 1s forwards; }
.j-card:nth-child(2) { animation: cardSlide2 0.8s ease 1.2s forwards; }
.j-card:nth-child(3) { animation: cardSlide3 0.8s ease 1.4s forwards; }
.j-card:nth-child(4) { animation: cardSlide4 0.8s ease 1.6s forwards; }

.j-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
  transition: left 0.8s ease;
}

.j-card:hover::before {
  left: 100%;
}

.j-card:hover {
  transform: translateY(-15px) scale(1.03) !important;
  border-color: rgba(255,215,0,0.6);
  box-shadow: 
    0 35px 100px rgba(255,215,0,0.3),
    0 0 50px rgba(255,215,0,0.2);
}

/* Icon */
.j-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 15px 40px rgba(255,215,0,0.5);
  animation: iconFloat 3s ease-in-out infinite;
}

/* Content */
.j-content {
  flex: 1;
  min-width: 0;
}

.j-content h4 {
  font-size: clamp(1.15rem, 4vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.j-content p {
  font-size: clamp(0.95rem, 3.5vw, 1.05rem);
  color: #d1d5db;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Why Section */
.j-why-section {
  text-align: center;
  padding: 45px 35px;
  background: rgba(20,20,20,0.95);
  border-radius: 28px;
  border: 2px solid rgba(255,215,0,0.25);
  margin-top: 50px;
  opacity: 0;
  transform: scale(0.9) translateY(30px);
  animation: whySlide 1s ease 2s forwards;
}

.j-why-section h3 {
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.j-why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.j-why-item {
  padding: 22px 32px;
  background: linear-gradient(135deg, rgba(255,215,0,0.18), rgba(255,237,74,0.12));
  color: #f8f8ff;
  border-radius: 20px;
  font-weight: 600;
  font-size: clamp(1rem, 4vw, 1.1rem);
  border: 1px solid rgba(255,215,0,0.35);
  transition: all 0.4s ease;
  width: 100%;
  max-width: 600px;
  line-height: 1.5;
}

.j-why-item:nth-child(1) { animation-delay: 2.2s; }
.j-why-item:nth-child(2) { animation-delay: 2.4s; }
.j-why-item:nth-child(3) { animation-delay: 2.6s; }

.j-why-item {
  opacity: 0;
  transform: translateY(20px);
  animation: itemSlide 0.6s ease forwards;
}

.j-why-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 80px rgba(255,215,0,0.35);
  border-color: rgba(255,215,0,0.7);
}

/* ANIMATIONS */
@keyframes headerSlide {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowLine {
  to { opacity: 1; width: clamp(100px, 25vw, 160px); }
}

@keyframes cardSlide1 {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cardSlide2 {
  to { opacity: 1; transform: translateY(-5px) scale(1); }
}

@keyframes cardSlide3 {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cardSlide4 {
  to { opacity: 1; transform: translateY(-5px) scale(1); }
}

@keyframes whySlide {
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes itemSlide {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes shineLine {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ========================================
   PERFECT RESPONSIVE BREAKPOINTS
   ======================================= */

/* Desktop Large */
@media (min-width: 1200px) {
  .j-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Desktop Medium */
@media (min-width: 992px) and (max-width: 1199px) {
  .j-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .container { padding: 0 25px; }
}

/* Tablet Landscape */
@media (max-width: 991px) {
  .join-section { padding: 80px 0; }
  .j-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Tablet Portrait - MOBILE SINGLE COLUMN START */
@media (max-width: 768px) {
  .join-section { padding: 60px 0; }
  .j-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
  .j-card {
    flex-direction: column !important;
    text-align: center !important;
    padding: 30px 25px !important;
  }
  
  .j-icon {
    margin-right: 0 !important;
    margin-bottom: 18px !important;
  }
}

/* Mobile Landscape */
@media (max-width: 600px) {
  .join-section { padding: 50px 0; }
  .container { padding: 0 16px; }
  .j-header { margin-bottom: 40px; }
  .j-card { padding: 25px 20px; }
  .j-icon { 
    width: 60px; 
    height: 60px; 
    font-size: 1.8rem; 
  }
}

/* Mobile Portrait - PERFECT SINGLE COLUMN */
@media (max-width: 480px) {
  .join-section { padding: 40px 0; }
  .j-header h2 { margin-bottom: 15px; }
  .j-grid { gap: 16px; margin-bottom: 40px; }
  .j-card { 
    padding: 22px 18px; 
    border-radius: 20px;
    gap: 0;
  }
  .j-icon { 
    width: 52px; 
    height: 52px; 
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .j-content h4 { margin-bottom: 10px; }
  
  .j-why-section { 
    padding: 32px 22px; 
    margin-top: 35px;
  }
  .j-why-item { padding: 18px 24px; }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .j-card { padding: 20px 16px; }
  .j-icon { width: 48px; height: 48px; font-size: 1.4rem; }
  .j-why-item { padding: 16px 20px; font-size: 0.95rem; }
}

/* 2 COLUMN + BOTTOM GUIDELINES */
.contact-2col-section {
  padding: 120px 0;
  background: radial-gradient(ellipse at top, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
  color: #e8e8e8;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.c2-header {
  text-align: center;
  margin-bottom: 70px;
}

.c2-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.c2-glow-line {
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4a);
  border-radius: 2px;
  margin: 0 auto;
  animation: goldPulse 2s ease-in-out infinite;
}

/* 2 Column Grid */
.c2-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Columns */
.c2-column {
  background: rgba(15,15,15,0.95);
  border-radius: 25px;
  padding: 45px 35px;
  border: 1px solid rgba(255,215,0,0.3);
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(15px);
  overflow: hidden;
}

.support-column {
  animation: slideLeft 0.9s ease 0.3s forwards;
}

.website-column {
  animation: slideRight 0.9s ease 0.5s forwards;
}

.c2-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
  transition: left 0.8s ease;
}

.c2-column:hover::before {
  left: 100%;
}

.c2-column:hover {
  transform: translateY(-20px) scale(1.02);
  border-color: rgba(255,215,0,0.6);
  box-shadow: 0 40px 120px rgba(255,215,0,0.25);
}

/* Icons */
.c2-icon {
  width: 85px;
  height: 85px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 25px;
  box-shadow: 0 25px 60px rgba(255,215,0,0.5);
  animation: iconFloat 3s ease-in-out infinite;
}

/* Typography */
.c2-column h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.c2-column p {
  font-size: 1.05rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Links */
.c2-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.c2-link {
  display: block;
  padding: 18px 25px;
  background: rgba(255,215,0,0.15);
  color: #ffffff;
  text-decoration: none;
  border-radius: 15px;
  border: 1px solid rgba(255,215,0,0.4);
  font-weight: 500;
  transition: all 0.3s ease;
}

.c2-link:hover {
  background: rgba(255,215,0,0.25);
  transform: translateX(12px);
  box-shadow: 0 20px 50px rgba(255,215,0,0.3);
}

.c2-website {
  display: block;
  padding: 25px 35px;
  background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,237,74,0.15));
  color: #ffd700;
  text-decoration: none;
  border-radius: 20px;
  border: 2px solid rgba(255,215,0,0.4);
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
}

.c2-website:hover {
  background: linear-gradient(135deg, rgba(255,215,0,0.3), rgba(255,237,74,0.25));
  color: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(255,215,0,0.4);
}

/* BOTTOM SUPPORT GUIDELINES */
.c2-guidelines-section {
  background: rgba(20,20,20,0.95);
  border-radius: 30px;
  padding: 50px 40px;
  border: 2px solid rgba(255,215,0,0.25);
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: guidelinesSlideUp 1s ease 0.8s forwards;
  backdrop-filter: blur(20px);
  max-width: 900px;
  margin: 0 auto;
}

.c2-guidelines-icon {
  width: 90px;
  height: 90px;
  border-radius: 25px;
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 30px;
  box-shadow: 0 25px 60px rgba(255,215,0,0.5);
  animation: iconFloat 3s ease-in-out infinite;
}

.c2-guidelines-section h3 {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 35px;
}

.c2-guidelines-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.c2-guidelines-list li {
  padding: 20px 25px;
  background: rgba(255,215,0,0.12);
  border-radius: 15px;
  border-left: 4px solid #ffd700;
  font-weight: 500;
  font-size: 1rem;
  color: #f8f8ff;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.c2-guidelines-list li:hover {
  background: rgba(255,215,0,0.25);
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(255,215,0,0.25);
}

/* Animations */
@keyframes slideLeft {
  to { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes slideRight {
  to { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes guidelinesSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,215,0,0.6); }
  50% { box-shadow: 0 0 40px rgba(255,215,0,0.9); }
}

/* Responsive */
@media (max-width: 900px) {
  .c2-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .c2-guidelines-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .c2-header h2 { font-size: 2.3rem; }
  .c2-column { padding: 35px 25px; }
}





/* FOOTER */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    color: #ccc;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,215,0,0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ffd700;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 45px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-section a:hover {
    color: #ffd700;
    padding-left: 0.5rem;
    transform: translateX(5px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-3px) scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
   
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-links span {
    color: #666;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-bottom-content {
        gap: 0.5rem;
    }
}

@media (max-width: 600px) {
    .why-MetaXon-image-wrapper {
        width: auto !important;
        height: 500px;
    }
    .vision-block {
        padding: 0.4rem 0.8rem !important;
        margin: 0 1rem;
    }
        .vision-block.animate-on-scroll.animate {
            margin-left: 0px;
            margin-right: 0px;
        }
    .reward-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 1rem;
        text-align: center;
        border: 1px solid rgba(255, 107, 53, 0.3);
        transition: all 0.4s ease;
    }
    .c2-link {
        display: block;
        padding: 18px 25px;
        background: rgba(255, 215, 0, 0.15);
        color: #ffffff;
        text-decoration: none;
        border-radius: 15px;
        border: 1px solid rgba(255, 215, 0, 0.4);
        font-weight: 500;
        transition: all 0.3s ease;
        word-wrap: break-word;
    }
    .c2-website {
        display: block;
        padding: 14px 0px;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 237, 74, 0.15));
        color: #ffd700;
        text-decoration: none;
        border-radius: 20px;
        border: 2px solid rgba(255, 215, 0, 0.4);
        font-weight: 600;
        font-size: 17px;
        transition: all 0.4s ease;
    }
    .c2-guidelines-section {
        background: rgba(20, 20, 20, 0.95);
        border-radius: 30px;
        padding: 50px 7px;
        border: 2px solid rgba(255, 215, 0, 0.25);
        text-align: center;
        opacity: 0;
        transform: translateY(40px);
        animation: guidelinesSlideUp 1s ease 0.8s forwards;
        backdrop-filter: blur(20px);
        max-width: 900px;
        margin: 0 auto;
    }
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .column-card.animate-on-scroll.animate {
        padding-left: 0px;
        padding-right: 1px;
        padding-top: 4px;
        padding-bottom: 12px;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
        text-align: left;
        padding-left: 20px;
    }
}

img.logo-footer-latest {
    width: 100%;
    max-width: 60%;
    height: auto;
}


/*css start metaxon*/

h2.logo-heading-latest {
    font-size: 36px;
    font-weight: 700;
}
.step-card.animate-on-scroll.animate {
    padding: 0px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 19px;
}
video.auto-video-latest {
    width: 100%;
    max-width: 100%;
}

/*road map*/

.lux-roadmap {
    padding: 80px 0;
    background: #000;
    font-family: "Poppins", sans-serif;
    color: white;
}

.lux-title {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    background: linear-gradient(90deg, #f7d58b, #c4a14a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lux-subline {
    width: 180px;
    height: 4px;
    margin: 15px auto 50px;
    background: linear-gradient(90deg, #a87b2c, #f9d88b, #a87b2c);
    border-radius: 4px;
}

.timeline-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
    gap: 40px;
    overflow-x: auto;
    scrollbar-width: none;
}

    .timeline-wrapper::-webkit-scrollbar {
        display: none;
    }

    /* Connecting Line */
    .timeline-wrapper::before {
        content: "";
        position: absolute;
        top: 58px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #a37d33, #f8d47b, #a37d33);
        animation: glow 3s infinite alternate;
    }

@keyframes glow {
    0% {
        box-shadow: 0 0 12px gold;
    }

    100% {
        box-shadow: 0 0 25px gold;
    }
}

/* Timeline Block */
.timeline-block {
    position: relative;
    text-align: center;
    min-width: 280px;
}

/* Golden Dot */
.timeline-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffe29b, #a06d2c);
    margin: 0 auto 20px;
    box-shadow: 0 0 15px gold;
}

/* Card */
.timeline-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(240, 200, 120, 0.5);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
    transition: 0.4s;
    transform: translateY(40px);
    opacity: 0;
    animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #f7d58b;
}

.timeline-card ul {
    padding: 0;
    list-style: none;
}

    .timeline-card ul li {
        margin: 10px 0;
        color: #e0e0e0;
        font-size: 15px;
        position: relative;
        padding-left: 18px;
    }

        .timeline-card ul li::before {
            content: "★";
            position: absolute;
            left: 0;
            color: #f5d07a;
            font-size: 12px;
        }

/* Hover Effect */
.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.6);
}

/* Transparency Box */
.transparency-box {
    margin-top: 60px;
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
    text-align: center;
}

    .transparency-box h3 {
        font-size: 28px;
        margin-bottom: 15px;
        color: #f7d58b;
    }

    .transparency-box ul {
        list-style: none;
        padding: 0;
    }

        .transparency-box ul li {
            margin: 8px 0;
            color: #e6e6e6;
        }

/* Mobile Responsive */
@media (max-width: 768px) {
    .timeline-wrapper {
        flex-direction: row;
        overflow-x: scroll;
    }
    .join-btn {
        background: linear-gradient(45deg, #000, #1a1a1a);
        color: #ffd700;
        padding: 6px 4px;
        border: 2px solid #ffd700;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    }
}
/* Visible Scroll Bar for Mobile */
.timeline-wrapper {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #f8d47b #222; /* thumb & track */
}

    /* For Chrome/Safari */
    .timeline-wrapper::-webkit-scrollbar {
        height: 8px; /* horizontal scroll bar */
    }

    .timeline-wrapper::-webkit-scrollbar-track {
        background: #222;
        border-radius: 10px;
    }

    .timeline-wrapper::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, #a87b2c, #f9d88b);
        border-radius: 10px;
        box-shadow: 0 0 10px gold;
    }
button#mobileToggle {
    display: none !important;
}

/*faq*/
.faq-section {
    padding: 80px 0;
    background: #000;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.faq-header h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(90deg, #fcd283, #b58934);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-line {
    width: 160px;
    height: 4px;
    margin: 10px auto 40px;
    border-radius: 3px;
    background: linear-gradient(90deg, #a8772b, #fcd283, #a8772b);
}

.faq-container {
    max-width: 750px;
    margin: auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 15px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

    .faq-item:hover {
        box-shadow: 0 0 18px rgba(255, 200, 80, 0.6);
        border-color: gold;
    }

.faq-question {
    padding: 18px 20px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: #fcd283;
    background: rgba(255, 215, 0, 0.05);
}

    .faq-question i {
        font-size: 20px;
        transition: 0.3s;
    }

.faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
    color: #e6e6e6;
    display: none;
    line-height: 1.6;
}
/* BACKGROUND SECTION */
.booster-section {
    padding: 70px 0;
    background: radial-gradient(circle at top, #2a2100, #0d0d0d);
}

/* TITLES */
.boost-title {
    color: #ffda44;
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}

.boost-subtitle {
    color: #d9d9d9;
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
}

/* GRID */
.booster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}

/* CARD DESIGN */
.booster-card {
    position: relative;
    padding: 35px;
    border-radius: 20px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.08);
    transition: 0.35s;
}

    .booster-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 0 45px rgba(255, 215, 0, 0.4);
    }

/* GOLD GLOW EFFECT */
.booster-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,215,0,0.3), transparent);
    opacity: 0;
    transition: 0.4s;
}

.booster-card:hover .booster-glow {
    opacity: 1;
}

/* CARD TITLE */
.booster-name {
    color: #ffda44;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

/* STATS TEXT */
.booster-stats p {
    color: #ffffff;
    font-size: 18px;
    margin: 10px 0;
}

.booster-stats span {
    color: #ffda44;
    font-weight: 600;
}

.booster-stats strong {
    color: #ffcc00;
    font-size: 22px;
}

/* HIGHLIGHT CARD */
.booster-highlight {
    border: 1.5px solid #ffea75;
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

/* HOT BADGE */
.badge-popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(145deg, #ffda44, #ff8f00);
    color: #000;
    padding: 6px 12px;
    font-weight: 700;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(255,215,0,0.3);
}

/* FEATURES BOX */
.booster-features {
    margin-top: 45px;
    padding: 25px;
    background: rgba(255,215,0,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 15px;
}

    .booster-features ul {
        list-style: none;
        padding: 0;
        line-height: 2;
        font-size: 18px;
        color: #ffda44;
    }

/* Responsive */
@media (max-width: 600px) {
    .faq-header h2 {
        font-size: 30px;
    }

    .faq-question {
        font-size: 16px;
    }
}
/* SECTION BACKGROUND */
.booster-metal {
    padding: 70px 0;
    background: linear-gradient(145deg, #0b0b0b, #1a1a1a);
    color: #fff;
    text-align: center;
}

/* TITLES */
.metal-title {
    font-size: 40px;
    font-weight: 800;
    color: #ffcc33;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.metal-subtitle {
    font-size: 18px;
    color: #e0e0e0;
    max-width: 850px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* TABLE WRAPPER */
.metal-table-wrapper {
    overflow-x: auto;
}

/* TABLE STYLE */
.metal-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 200, 0, 0.4);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}

    /* TABLE HEADER */
    .metal-table thead {
        background: linear-gradient(145deg, #ffcc33, #b88a00);
    }

        .metal-table thead th {
            padding: 15px;
            font-size: 20px;
            font-weight: 700;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

    /* TABLE BODY ROWS */
    .metal-table tbody tr {
        border-bottom: 1px solid rgba(255, 200, 0, 0.2);
        transition: 0.3s;
    }

        .metal-table tbody tr:hover {
            background: rgba(255, 200, 0, 0.12);
        }

    .metal-table tbody td {
        padding: 14px 18px;
        font-size: 18px;
        color: #f4f4f4;
    }

    /* HIGHLIGHT ROI */
    .metal-table strong {
        color: #ffdf33;
        font-size: 20px;
    }

/* POINTS LIST */
.metal-points {
    margin-top: 35px;
    list-style: none;
    padding: 0;
    font-size: 19px;
    line-height: 2;
    color: #ffcc33;
}

.footer-bottom-content {
    position: absolute;
    right: 32px;
}

.golden-theme {
    background: #0f0f0f;
    padding: 60px 0;
}

.gold-title {
    color: #ffda44;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
}

.gold-subtitle {
    color: #c9c9c9;
    font-size: 18px;
}

.plan-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #9c7b16;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
    transition: 0.3s;
}

    .plan-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    }

.plan-header h3 {
    color: #ffda44;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.plan-price {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffda44;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.plan-body ul {
    color: #e6e6e6;
    list-style: none;
    padding: 0;
}

    .plan-body ul li {
        padding: 6px 0;
        font-size: 16px;
    }

.popular-badge {
    background: #ffda44;
    color: #000;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    right: -19px;
    top: -19px;
}

.turbo-features {
    margin-top: 40px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid #9c7b16;
    padding: 20px;
    border-radius: 15px;
}

    .turbo-features ul {
        color: #ffda44;
        font-size: 18px;
        line-height: 2;
        list-style: none;
        text-align:center;
    }

/* MAIN SECTION */
.earnings-metal {
    padding: 80px 0;
    background: radial-gradient(circle at top, #1a1500, #000000);
    text-align: center;
}

/* MAIN TITLES */
.main-metal-title {
    color: #ffcc44;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-metal-subtitle {
    color: #d5d5d5;
    font-size: 18px;
    margin-bottom: 45px;
}

/* GRID FOR TWO CARDS */
.earnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
}

/* UNIQUE EARN CARD DESIGN */
.earn-card {
    position: relative;
    background: rgba(255, 215, 0, 0.07);
    border: 1px solid rgba(255, 200, 0, 0.3);
    border-radius: 18px;
    padding: 30px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(12px);
    transition: 0.4s;
}

    .earn-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.35);
    }

/* SHINE EFFECT */
.shine-effect {
    position: absolute;
    top: -120%;
    left: -120%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,220,90,0.3), transparent 70%);
    transform: rotate(45deg);
    opacity: 0;
    transition: 0.6s;
}

.earn-card:hover .shine-effect {
    opacity: 1;
    top: -10%;
    left: -10%;
}

/* CARD TITLES */
.earn-title {
    color: #ffdd55;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

.earn-sub {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 20px;
}

/* TABLE */
.earn-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

    .earn-table th {
        background: linear-gradient(135deg, #ffcc33, #b88800);
        padding: 12px;
        font-size: 18px;
        font-weight: 800;
        color: #000;
    }

    .earn-table td {
        padding: 12px;
        color: #efefef;
        border-bottom: 1px solid rgba(255, 208, 70, 0.2);
    }

    .earn-table tbody tr:hover {
        background: rgba(255, 190, 0, 0.1);
    }

    /* HIGHLIGHTED % */
    .earn-table strong {
        color: #ffea6b;
        font-size: 20px;
        text-shadow: 0 0 10px rgba(255,230,100,0.6);
    }

/* POINTS */
.earn-points {
    list-style: none;
    padding: 0;
    color: #ffcc33;
    font-size: 17px;
    line-height: 1.8;
}
/* LEADER CARD SPECIAL */
.leader-card {
    background: rgba(255,215,0,0.08);
    border: 1.5px solid rgba(255,200,0,0.4);
    border-radius: 18px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.18);
}

    .leader-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 45px rgba(255, 215, 0, 0.45);
    }

/* TABLE WRAPPER */
.metal-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

/* TABLE DESIGN */
.leader-table {
    width: 100%;
    border-collapse: collapse;
    /*min-width: 600px;*/
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,190,0,0.3);
    backdrop-filter: blur(12px);
    border-radius: 10px;
}

    .leader-table thead {
        background: linear-gradient(135deg, #ffcc33, #b88a00);
    }

    .leader-table th {
        padding: 14px;
        font-size: 18px;
        font-weight: 800;
        color: #000;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .leader-table td {
        padding: 14px;
        color: #f6f6f6;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,220,100,0.2);
    }

    .leader-table tbody tr:hover {
        background: rgba(255, 190, 0, 0.15);
    }

    /* HIGHLIGHT REWARD */
    .leader-table strong {
        color: #ffe977;
        font-size: 20px;
        text-shadow: 0 0 12px rgba(255,220,0,0.7);
    }

/* POINTS LIST */
.earn-points li {
    color: #ffcc44;
    font-size: 17px;
    margin: 5px 0;
    font-weight: 600;
}
/* WRAPPER HEIGHT FIX + SCROLL */
.metal-table-wrapper {
    max-height: 223px;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 12px;
    padding-right: 5px;
    scroll-behavior: smooth;
}

    /* SCROLLBAR TRACK */
    .metal-table-wrapper::-webkit-scrollbar {
        width: 10px;
    }

    .metal-table-wrapper::-webkit-scrollbar-track {
        background: linear-gradient(180deg, #4a3a00, #1e1e1e);
        border-radius: 10px;
        box-shadow: inset 0 0 8px rgba(255, 215, 0, 0.2);
    }

    /* SCROLLBAR THUMB GOLD METALLIC */
    .metal-table-wrapper::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #ffdf66, #b88600);
        border: 2px solid #f4c430;
        border-radius: 12px;
        box-shadow: 0 0 12px rgba(255, 210, 0, 0.6);
        transition: 0.3s ease-in-out;
    }

        /* HOVER EFFECT — GLOW */
        .metal-table-wrapper::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #ffe580, #d49a00);
            box-shadow: 0 0 18px rgba(255, 225, 0, 0.9);
            cursor: pointer;
        }
img.terms-latest {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: auto;
}

/*---*/

/* GLOBAL GOLD GRADIENTS */
:root {
    --gold-1: #ffcc33;
    --gold-2: #d4a017;
    --gold-3: #ffdf75;
    --dark-bg: #0d0d0d;
}

/* GOLD TEXT GLOW */
.gold-glow {
    color: var(--gold-1);
    text-shadow: 0 0 12px rgba(255, 207, 84, 0.7), 0 0 22px rgba(255, 207, 84, 0.5);
}

/* SECTION TITLE GOLD HIGHLIGHT */
.section-header h2 {
    color: var(--gold-1);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    position: relative;
}

    .section-header h2::after {
        content: "";
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
        display: block;
        margin: 12px auto 0;
        border-radius: 10px;
    }

/* GLASS EFFECT */
.glass-box {
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.15);
}

/* GOLD BORDER HOVER EFFECT */
.gold-border-hover {
    transition: 0.4s;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

    .gold-border-hover:hover {
        border-color: var(--gold-3);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
        transform: translateY(-8px);
    }

/* GOLDEN SLIDER GLOW */
/*.hero .slide-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.95));
}*/

/* GOLD BUTTON */
.cta-primary, .join-btn {
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    color: #000 !important;
    font-weight: 700;
    box-shadow: 0 0 12px rgba(255, 207, 84, 0.6);
    border-radius: 50px;
    padding: 12px 25px;
    transition: 0.3s;
}

    .cta-primary:hover, .join-btn:hover {
        box-shadow: 0 0 22px rgba(255, 207, 84, 1);
        transform: scale(1.08);
    }

/* GOLDEN ANIMATE ON SCROLL */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* FADE-IN ANIMATION */
@keyframes goldFadeIn {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-gold {
    animation: goldFadeIn 1s ease forwards;
}

/* GOLDEN CARD OUTLINE */
.plan-card, .earn-card, .leader-card, .step-card {
    border: 1px solid rgba(255, 215, 0, 0.25);
    transition: 0.3s ease;
}

    .plan-card:hover, .earn-card:hover, .step-card:hover {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
        border-color: var(--gold-1);
    }

/* GOLDEN ORBIT EFFECT */
@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.why-MetaXon-orbit {
    border: 2px solid rgba(255, 215, 0, 0.25);
    animation: orbitRotate 16s linear infinite;
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 26px;
    }

    .plan-card, .earn-card {
        margin-bottom: 20px;
    }

    .gold-title {
        font-size: 22px !important;
    }
}


@media (max-width: 600px) {
    .metal-table-wrapper {
        max-height: 336px;
        overflow-y: auto;
        overflow-x: auto;
        border-radius: 12px;
        padding-right: 5px;
        scroll-behavior: smooth;
    }
    /* GLOBAL FIXES */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* CONTAINER WIDTH FIX */
    .container {
        width: 100%;
        padding: 0 15px;
        margin: 0 auto;
    }

    /* REMOVE SIDE CUT-OFF ISSUE */
    body, html {
        overflow-x: hidden !important;
    }

    /* FIX GRID BREAKING ON SMALL SCREENS */
    .earnings-grid,
    .plans-grid,
    .columns-grid,
    .stMetaXon-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .leader-card {
        background: rgba(255,215,0,0.08);
        border: 1.5px solid rgba(255,200,0,0.4);
        border-radius: 18px;
        padding: 8px !important;
        position: relative;
        overflow: hidden;
        transition: 0.4s ease;
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.18);
    }
    .earn-card {
        position: relative;
        background: rgba(255, 215, 0, 0.07);
        border: 1px solid rgba(255, 200, 0, 0.3);
        border-radius: 18px;
        padding: 6px !important;
        overflow: hidden;
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
        backdrop-filter: blur(12px);
        transition: 0.4s;
    }
    .metal-table tbody td {
        padding: 14px 0px;
        font-size: 15px;
        color: #f4f4f4;
    }
    .metal-table thead th {
        padding: 7px !important;
        font-size: 19px;
        font-weight: 700;
        color: #000;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .metal-title {
        font-size: 29px;
        font-weight: 800;
        color: #ffcc33;
        text-transform: uppercase;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }
    .plan-card {
        background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
        border: 1px solid #9c7b16;
        border-radius: 15px;
        padding: 7px !important;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
        transition: 0.3s;
    }
    .popular-badge {
        background: #ffda44;
        color: #000;
        padding: 5px 12px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: bold;
        position: absolute;
        right: -1px !important;
        top: -2px !important;
    }
    .cta-primary, .join-btn {
        background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
        color: #000 !important;
        font-weight: 700;
        box-shadow: 0 0 12px rgba(255, 207, 84, 0.6);
        border-radius: 50px;
        padding: 5px 12px !important;
        transition: 0.3s;
    }
    .lux-roadmap {
        padding: 11px 0 !important;
        background: #000;
        font-family: "Poppins", sans-serif;
        color: white;
    }
    .lux-title {
        text-align: center;
        font-size: 30px;
        font-weight: 700;
        background: linear-gradient(90deg, #f7d58b, #c4a14a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


