:root {
    --bg-dark: #000000;
    --bg-card: #0b1120;
    --bg-card-hover: #151e32;
    --primary: #7b2dfa;
    --primary-hover: #601BC0;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #2a2a2a;
    --gradient-hero: linear-gradient(135deg, #7b2dfa 0%, #3a1c71 100%);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(123, 45, 250, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

.text-gradient {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Components */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(123, 45, 250, 0.5);
}

.btn-outline {
    border-color: var(--primary);
    color: white;
}

.btn-outline:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
    text-align: center;
}

.section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    background-color: var(--bg-card-hover);
    border-color: rgba(123, 45, 250, 0.3);
}

/* Header */
.header {
    background-color: rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
}

.nav-link:hover {
    color: white;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-buttons-mobile {
    display: none;
}

.lang-selector {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glowing-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 0;
}

.crypto-card-visual {
    position: relative;
    z-index: 1;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(123, 45, 250, 0.5);
    font-size: 5rem;
    color: white;
    box-shadow: 0 0 50px rgba(123, 45, 250, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Workflow */
.workflow-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -10px;
    right: 10px;
}

.workflow-card h3 {
    margin-top: 10px;
    color: var(--primary);
}

.workflow-card p {
    color: var(--text-muted);
}

/* Features */
.feature-card {
    text-align: center;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(123, 45, 250, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing */
.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.pricing-img {
    height: 180px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pricing-card:hover .pricing-img img {
    transform: scale(1.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(123, 45, 250, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.featured .tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.pricing-header h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-header .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 5px;
}

.pricing-features {
    padding: 20px;
    flex: 1;
}

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .label {
    text-align: left;
}

.pricing-features .value {
    color: white;
    font-weight: 500;
    text-align: right;
}

/* Sold Out Badge */
.sold-out-card {
    position: relative;
    opacity: 0.9;
}

.sold-out-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1;
}

.sold-out-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
    width: 220px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;

    /* Stamp Visuals */
    color: #D32F2F;
    border: 8px double #D32F2F;
    border-radius: 50%;
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Courier New', Courier, monospace;
    /* Typewriter style */
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    background: rgba(211, 47, 47, 0.05);
    /* Slight tint */

    /* Grunge/Texture Effect using CSS Mask */
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.6"/></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" fill="black"/><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.3" style="mix-blend-mode: multiply"/></svg>');

    /* Mix blend mode for "stamped on" look */
    mix-blend-mode: normal;
    box-shadow: inset 0 0 0 2px rgba(211, 47, 47, 0.5);
    /* Inner ring */
}

.sold-out-stamp .inner {
    border-top: 2px solid #D32F2F;
    border-bottom: 2px solid #D32F2F;
    padding: 2px 10px;
    transform: translateX(30px);
    /* Shift text right inside circle */
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
    background: transparent;
}

/* Progress Bars */
.progress-container {
    padding: 0 20px 20px;
}

.progress-track {
    width: 100%;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    position: relative;
    background: repeating-linear-gradient(45deg,
            #00c6ff,
            #00c6ff 5px,
            #0072ff 5px,
            #0072ff 10px);
}

.progress-fill span {
    position: absolute;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 9px;
    line-height: 14px;
    font-weight: bold;
    z-index: 2;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
    left: 0;
}

.pricing-card .btn {
    margin: 20px;
    margin-top: 0;
    background-color: rgb(248, 249, 250);
    color: rgb(118, 31, 227);
    font-weight: 700;
    font-size: 1.25rem;
    /* ~20px */
    border-radius: 6px;
    padding: 16px;
    border: none;
    box-shadow: none;
    width: calc(100% - 40px);
    margin-left: 20px;
}

.pricing-card .btn:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Referral */
.referral .container {
    background: linear-gradient(to right, #1a103c, #0b1120);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.referral-text {
    flex: 1;
}

.referral-text h2 {
    color: #f7b500;
    /* Golden yellow */
    margin-bottom: 30px;
}

.referral-circles {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.ref-circle {
    text-align: center;
}

.circle-inner {
    width: 80px;
    height: 80px;
    border: 3px solid #f7b500;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    box-shadow: 0 0 15px rgba(247, 181, 0, 0.3);
}

.circle-label {
    color: var(--text-muted);
    font-size: 1rem;
}

.referral-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.big-icon {
    font-size: 10rem;
    color: rgba(123, 45, 250, 0.2);
}

/* Transactions */
.transactions {
    background-color: #050810;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: var(--primary);
    border-color: var(--primary);
}

.table-container {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    overflow: hidden;
    /* Hide overflow for scrolling */
    height: 300px;
    /* Fixed height for scrolling area */
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Headers stay fixed visually but techincally we might need two tables or a grid. 
   Simplest is to have a header row separate from the scrolling content. */
.transaction-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    padding: 15px 20px;
    background: #151e32;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transaction-list-viewport {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.transaction-list {
    /* Animation applied by JS or keyframes if static list is long enough */
    animation: scrollUp 10s linear infinite;
}

.transaction-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s;
}

.transaction-row:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.transaction-row .amount {
    color: #00ff88;
    font-weight: 500;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }

    /* Assumes list is duplicated for seamless loop */
}

/* Footer */
.footer {
    background-color: #050508;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Ticker Animation */
.crypto-ticker {
    background: rgba(123, 45, 250, 0.1);
    border-top: 1px solid rgba(123, 45, 250, 0.2);
    border-bottom: 1px solid rgba(123, 45, 250, 0.2);
    padding: 15px 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    white-space: nowrap;
}

.ticker-track {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 30px;
    font-weight: 600;
}

.ticker-item i {
    margin-right: 8px;
    color: var(--primary);
}

.ticker-item .up {
    color: #00ff88;
    font-size: 0.9rem;
    margin-left: 5px;
}

.ticker-item .down {
    color: #ff3333;
    font-size: 0.9rem;
    margin-left: 5px;
}

.ticker-item .flat {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 5px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-menu,
    .header-actions .btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .pricing-card.featured {
        transform: none;
    }

    .referral .container {
        flex-direction: column;
        padding: 40px 20px;
    }

    .big-icon {
        font-size: 6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Referral Details in Transactions Section */
.referral-details {
    text-align: left;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.referral-details p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.referral-steps {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-item {
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.step-item strong {
    color: var(--primary);
    font-size: 1.1rem;
    margin-right: 5px;
}

.highlight-text {
    font-weight: 600;
    color: white;
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}

/* Hero Updates */
.hero-btn-wide {
    min-width: 250px;
    text-align: center;
}

.hero-bonus-text {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-main);
}

.hero-bonus-text p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-bonus-text i {
    color: #f7b500;
}

/* Salary List in Referral Section */
.salary-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
    text-align: left;
}

.salary-list li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 3px solid #f7b500;
}

.salary-list .requirement {
    color: var(--text-main);
    font-weight: 500;
}

.salary-list .reward {
    color: #00ff88;
    font-weight: 700;
}

.referral-intro {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main);
    line-height: 1.5;
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, rgba(8, 12, 36, 0.95), rgba(12, 18, 48, 0.95)), url('assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 85px 0 60px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: white;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-text strong {
    color: var(--primary);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.big-icon-visual {
    font-size: 12rem;
    color: rgba(123, 45, 250, 0.2);
    filter: drop-shadow(0 0 20px rgba(123, 45, 250, 0.3));
}

.value-card,
.spec-card {
    text-align: center;
    padding: 40px 30px;
}

.value-card .icon,
.spec-card .spec-icon i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    background: rgba(123, 45, 250, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

.value-card h3,
.spec-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.value-card p,
.spec-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
}

/* =========================================
   FAQ Page Styles
   ========================================= */

/* FAQ Accordion */
.faq-section {
    padding: 4rem 0;
    min-height: 50vh;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.accordion-button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion-button:hover {
    color: var(--secondary);
}

.accordion-button .arrow {
    transition: transform 0.3s ease;
    color: var(--secondary);
}

.accordion-button.active .arrow {
    transform: rotate(180deg);
}

.accordion-button.active {
    color: var(--secondary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content .inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Partners Section */
.partners-section {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.6;
}

.partner-item {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form Section */
.contact-section {
    padding: 4rem 0;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid rgba(118, 56, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.contact-box h2 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.contact-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.contact-form textarea {
    resize: vertical;
}

/* =========================================
   FAQ Page Styles
   ========================================= */

/* FAQ Accordion */
.faq-section {
    padding: 4rem 0;
    min-height: 50vh;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.accordion-button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion-button:hover {
    color: var(--secondary);
}

.accordion-button .arrow {
    transition: transform 0.3s ease;
    color: var(--secondary);
}

.accordion-button.active .arrow {
    transform: rotate(180deg);
}

.accordion-button.active {
    color: var(--secondary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content .inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Partners Section */
.partners-section {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.6;
}

.partner-item {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form Section */
.contact-section {
    padding: 4rem 0;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid rgba(118, 56, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.contact-box h2 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.contact-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.contact-form textarea {
    resize: vertical;
}

/* Partners Section Marquee */
.partners-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-grid.marquee {
    display: flex;
    width: max-content;
    animation: partnersScroll 60s linear infinite;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.partners-grid.marquee:hover {
    animation-play-state: paused;
}

.partners-grid.marquee img {
    height: 40px;
    object-fit: contain;
    margin: 0 2rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.partners-grid.marquee img:hover {
    opacity: 1;
}

@keyframes partnersScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Affiliate Page Styles */
.affiliate-intro .affiliate-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.affiliate-image {
    flex: 1;
}

.affiliate-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.affiliate-text {
    flex: 1;
}

.affiliate-examples {
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.example-item {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.example-item:last-child {
    margin-bottom: 0;
}

.example-item strong {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Workflow Section */
.workflow-steps-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    text-align: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-card {
    flex: 1;
    min-width: 200px;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-card img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
}

@media (max-width: 991px) {
    .step-arrow {
        display: none;
    }

    .affiliate-intro .affiliate-content {
        flex-direction: column;
        text-align: center;
    }

    .affiliate-text .section-title.left-align {
        text-align: center;
    }
}

/* Salary Section */
.salary-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.5), rgba(20, 20, 20, 0.8));
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.salary-box {
    flex: 1;
    z-index: 2;
}

.salary-image {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.salary-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
}

.salary-rewards-list {
    list-style: none;
    margin: 2rem 0;
}

.salary-rewards-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.level-badge {
    background: var(--primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.salary-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-style: italic;
}

@media (max-width: 991px) {
    .salary-container {
        flex-direction: column-reverse;
        padding: 2rem;
    }
}

/* Bounty Page Styles */
.bounty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.bounty-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.bounty-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.bounty-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.bounty-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.bounty-reward {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.bounty-tasks {
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.bounty-tasks li {
    margin-bottom: 0.5rem;
}

/* Claim Section */
.claim-box {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.3), rgba(17, 24, 39, 0.8));
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.claim-box h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.claim-steps {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.claim-steps li {
    margin-bottom: 0.8rem;
}

/* VIP Page Styles */
.vip-banner-section img {
    width: 50%;
    display: block;
    margin: 0 auto 2rem auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vip-rewards-section,
.vip-benefits-section,
.vip-table-section,
.vip-info-section {
    margin-bottom: 1rem;
}

/* Reusing tips-card style with modifications if needed */
.tips-card {
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.tips-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.tips-card h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.tips-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.tips-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.tips-content li::before {
    content: '•';
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.tips-content .highlight {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

/* VIP Table */
.vip-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-table th,
.vip-table td {
    padding: 1.2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vip-table th {
    background: rgba(118, 31, 227, 0.2);
    color: var(--secondary);
    font-weight: 700;
}

.vip-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.vip-table td:first-child {
    color: var(--primary);
    font-weight: 700;
}

/* Info Section */
.info-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
}

.info-card h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.example-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--secondary);
    margin-top: 1.5rem;
}

.example-box h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Contact Page Styles */
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 1.5rem;
    margin-top: 0.3rem;
    background: rgba(118, 31, 227, 0.1);
    padding: 1rem;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Wallet Toast */
.wallet-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(11, 17, 32, 0.95);
    border: 1px solid var(--primary);
    padding: 20px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(123, 45, 250, 0.4);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
    min-width: 300px;
}

.wallet-toast.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.wallet-toast i {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.wallet-toast span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}