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

body {
    font-family: Fredoka, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000000;
}

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

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Fredoka+One&display=swap');

/* Header Styles */
header {
    background: #000000;
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    align-items: center;
    font-family: "Fredoka One", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #FFF;
}

.logo-text .desire {
    color: #FFF;
}

.logo-text .cash {
    background: linear-gradient(98deg, #F9C300 19.57%, #FFF 24.77%, #FFC800 30.77%, #FFD333 42.76%, #FFF9E2 46.76%, #FFC800 50.36%, #FFFDF5 58.2%, #FFC800 63.8%, #FFFDF6 79.15%, #FFC800 85.15%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #FFF;
    font-family: Fredoka;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FFD700;
}

.auth-link {
    color: #FFF;
    text-decoration: none;
    font-family: Fredoka;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: color 0.3s ease;
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
}

.auth-link:hover {
    color: #FFD700;
}

/* Auth Links Container */
.auth-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-separator {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.7;
}

/* Mobile Auth Links */
.mobile-auth-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #FFF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    flex-direction: column;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-logo-icon {
    width: 32px;
    height: 32px;
}

.mobile-logo-text {
    color: #FFF;
    font-family: "Fredoka One", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.mobile-logo-text .cash {
    background: linear-gradient(98deg, #F9C300 19.57%, #FFF 24.77%, #FFC800 30.77%, #FFD333 42.76%, #FFF9E2 46.76%, #FFC800 50.36%, #FFFDF5 58.2%, #FFC800 63.8%, #FFFDF6 79.15%, #FFC800 85.15%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.close-line {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.close-line:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.close-line:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.mobile-menu-content > a {
    color: #FFF;
    text-decoration: none;
    font-family: Fredoka;
    font-size: 18px;
    font-weight: 500;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-content > a:hover {
    color: #7C3AED;
    padding-left: 0.5rem;
}

.mobile-auth-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    width: 100%;
    justify-content: flex-start;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-auth-links .auth-link {
    color: #FFF;
    font-family: Fredoka;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-auth-links .auth-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #7C3AED;
}

.mobile-auth-links .auth-separator {
    color: #FFF;
    font-size: 16px;
    opacity: 0.7;
}

/* Hamburger Animation */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/hero0.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-title {
    font-family: "Fredoka One", sans-serif;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-title .highlight {
    color: #8B5CF6;
}

.hero-bullets {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.hero-bullets li {
    font-size: 24px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    min-height: 2rem;
}

.hero-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: bold;
    flex-shrink: 0;
    width: 1.5rem;
    text-align: center;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #8B5CF6;
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    animation: coinBounce 5s infinite;
}

@keyframes coinBounce {
    0%, 90%, 100% {
        transform: translateY(0);
    }
    5% {
        transform: translateY(-20px);
    }
    10% {
        transform: translateY(0);
    }
    15% {
        transform: translateY(-15px);
    }
    20% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    30% {
        transform: translateY(0);
    }
}

/* Earn Ways Section */
.earn-ways {
    padding: 80px 0;
    background: #000000;
    color: white;
}

.earn-ways .section-title {
    text-align: center;
    font-family: "Fredoka One", sans-serif;
    font-size: 40px;
    margin-bottom: 1rem;
    color: white;
}

.earn-ways .section-title .highlight {
    color: #8B5CF6;
}

.earn-subtitle {
    text-align: center;
    font-size: 24px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.earn-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.earn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.earn-card {
    background: linear-gradient(276deg, rgba(23, 23, 55, 0.80) 0.65%, rgba(0, 0, 0, 0.00) 99.35%);
    border-radius: 20px;
    border: 1px solid #6E6EFF;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.earn-card.highlighted {
    border: 4px solid var(--gold, #F9C300);
    background: linear-gradient(276deg, rgba(23, 23, 55, 0.80) 0.65%, rgba(0, 0, 0, 0.00) 99.35%);
}

.earn-card:hover {
    transform: translateY(-5px);
}

.earn-card-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.earn-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
}

.earn-card h3 {
    font-family: "Fredoka One", sans-serif;
    font-size: 20px;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
    width: 100%;
}

.earn-card p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    text-align: center;
    width: 100%;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Section */
.about {
    padding: 80px 0;
    background: url('images/what-is-desire-cash0.png') right center no-repeat, rgba(64, 47, 114, 0.40);
    background-blend-mode: lighten, normal;
    color: white;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/what-is-desire-cash0.png') right center no-repeat;
    background-size: contain;
    opacity: 0.4;
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 600px;
}

.about-text h2 {
    font-family: "Fredoka One", sans-serif;
    font-size: 40px;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.about-text h2 .highlight {
    color: #FFD700;
}

.about-subtitle {
    font-size: 24px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.about-bullets {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.about-bullets li {
    font-size: 16px;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    align-items: center;
    min-height: 1.5rem;
}

.about-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    flex-shrink: 0;
    width: 1.2rem;
    text-align: center;
}

.about-cta {
    margin-top: 2rem;
}

.about-cta-button {
    display: inline-block;
    border-radius: 44px;
    border: 2px solid #FFF4C6;
    background: var(--gold, linear-gradient(103deg, #F9C300 30.97%, #FFF 39.62%, #FFC800 49.59%, #FFD333 69.54%, #FFF9E2 76.19%, #FFC800 82.17%, #FFD027 108.1%, #FFF 112.76%, #FFC800 124.06%));
    color: #000;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.about-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Marketing Arsenal Section */
.marketing-arsenal {
    padding: 80px 0;
    background: #000000;
    color: white;
    display: flex;
    max-width: 1200px;
    flex-direction: column;
    align-items: center;
    gap: 0;
    align-self: stretch;
    margin: 0 auto;
}

.marketing-arsenal .section-title {
    text-align: center;
    font-family: "Fredoka One", sans-serif;
    font-size: 40px;
    margin-bottom: 12px;
    color: white;
}

.marketing-arsenal .section-title .highlight {
    color: #FFD700;
}

.marketing-subtitle {
    text-align: center;
    font-size: 24px;
    margin-bottom: 0;
    opacity: 0.9;
}

.marketing-intro {
    text-align: center;
    font-size: 16px;
    margin-bottom: 3rem;
    margin-top: 1rem;
    opacity: 0.8;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.marketing-card {
    background: linear-gradient(276deg, rgba(23, 23, 55, 0.80) 0.65%, rgba(0, 0, 0, 0.00) 99.35%);
    border: 1px solid rgba(110, 110, 255, 0.50);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 140px;
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.marketing-card:nth-child(even) {
    flex-direction: row-reverse;
}

.marketing-card:nth-child(even) .marketing-card-content {
    text-align: right;
}

.marketing-card:hover {
    transform: translateY(-5px);
}

.marketing-card-image {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    margin: 0;
}

.marketing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
}

.marketing-card-content {
    flex: 1;
    min-width: 0;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.marketing-card h3 {
    font-family: "Fredoka One", sans-serif;
    font-size: 20px;
    margin-bottom: 1rem;
    color: white;
    text-align: left;
    width: 100%;
    margin-top: 0;
}

.marketing-card p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    text-align: left;
    width: 100%;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 0;
}

.marketing-cta {
    text-align: center;
    margin-top: 3rem;
}

.marketing-cta-button {
    display: inline-block;
    border-radius: 44px;
    border: 2px solid #FFF4C6;
    background: var(--gold, linear-gradient(103deg, #F9C300 30.97%, #FFF 39.62%, #FFC800 49.59%, #FFD333 69.54%, #FFF9E2 76.19%, #FFC800 82.17%, #FFD027 108.1%, #FFF 112.76%, #FFC800 124.06%));
    color: #000;
    padding: 18px 40px;
    text-decoration: none;
    font-family: "Fredoka One", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.marketing-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Payment Options Section */
.payment-options {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 40, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,2 18,6 18,14 10,18 2,14 2,6" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
    background-size: cover;
    padding: 4rem 0;
    color: white;
    position: relative;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.payment-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.payment-title {
    font-family: "Fredoka One", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.flexible-text {
    color: #6A6AFF;
}

.payment-subtitle {
    font-family: "Fredoka", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    max-width: 50%;
}

.payment-method {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    flex: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.payment-method-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.125rem;
    height: 100%;
}

.payment-method-label {
    font-family: "Fredoka", sans-serif;
    font-size: 6px;
    font-weight: 400;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    line-height: 1;
}

.payment-method-name {
    font-family: "Fredoka One", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.payment-method-name.tether {
    color: #00D4AA;
}

.payment-method-image {
    max-width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #000000;
    color: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-family: "Fredoka One", sans-serif;
    font-size: 40px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.faq-title .highlight {
    color: #8B5CF6;
}

.faq-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-chat-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-question-box {
    background: linear-gradient(276deg, rgba(23, 23, 55, 0.80) 0.65%, rgba(0, 0, 0, 0.00) 99.35%);
    border: 1px solid rgba(110, 110, 255, 0.50);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
    align-self: flex-start;
    max-width: 70%;
}

.faq-answer-box {
    background: linear-gradient(276deg, rgba(23, 23, 55, 0.80) 0.65%, rgba(0, 0, 0, 0.00) 99.35%);
    border: 1px solid rgba(110, 110, 255, 0.50);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
    align-self: flex-end;
    max-width: 70%;
}

.faq-question-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #8B5CF6, #667eea);
    border-radius: 17px;
    z-index: -1;
    opacity: 0.3;
}

.faq-answer-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #8B5CF6, #667eea);
    border-radius: 17px;
    z-index: -1;
    opacity: 0.3;
}

.faq-question {
    font-family: "Fredoka One", sans-serif;
    font-size: 18px;
    color: white;
    margin: 0;
}

.faq-answer {
    font-size: 16px;
    color: white;
    line-height: 1.6;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-answer::after {
    content: '👍';
    font-size: 16px;
    opacity: 0.7;
    align-self: flex-end;
}

.faq-link {
    text-align: center;
    margin-top: 2rem;
}

.faq-link a {
    color: #8B5CF6;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
}

.faq-link a:hover {
    color: #7C3AED;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: 
        linear-gradient(to right, #000000 0%, #000000 30%, transparent 70%, transparent 100%),
        url('images/questions.png') right center no-repeat;
    background-size: contain;
    color: white;
    position: relative;
}

.contact-content {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.contact-text {
    max-width: 500px;
    z-index: 2;
    position: relative;
}

.contact-title {
    font-family: "Fredoka One", sans-serif;
    font-size: 40px;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.contact-title .highlight {
    color: #8B5CF6;
}

.contact-description {
    font-size: 16px;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    color: white;
    font-size: 14px;
    font-weight: 500;
    font-family: Fredoka, sans-serif;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #333;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 14px;
    font-family: Fredoka, sans-serif;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background: #8B5CF6;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: "Fredoka One", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}


/* FAQ Hidden Items */
.faq-hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.faq-hidden.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Toggle Button */
.faq-toggle-btn {
    background: #8B5CF6;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: "Fredoka One", sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-toggle-btn:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.faq-toggle-btn:active {
    transform: translateY(0);
}

/* Footer */
footer {
    background: #171737;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-text {
    font-family: "Fredoka One", sans-serif;
    font-size: 24px;
}

.footer-logo-text .desire {
    color: white;
}

.footer-logo-text .cash {
    background: linear-gradient(98deg, #F9C300 19.57%, #FFF 24.77%, #FFC800 30.77%, #FFD333 42.76%, #FFF9E2 46.76%, #FFC800 50.36%, #FFFDF5 58.2%, #FFC800 63.8%, #FFFDF6 79.15%, #FFC800 85.15%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 14px;
    color: #ccc;
    margin-top: 0.5rem;
}

.footer-tagline a {
    color: #8B5CF6;
    text-decoration: underline;
}

.footer-section h3 {
    font-family: "Fredoka One", sans-serif;
    font-size: 18px;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-support-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* Login Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #171737;
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-family: "Fredoka One", sans-serif;
    font-size: 24px;
    color: white;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: white;
}

.login-form {
    margin-bottom: 2rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.login-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #8B5CF6;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    font-family: Fredoka, sans-serif;
}

.login-form input::placeholder {
    color: #999;
}

.login-form input:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.forgot-password {
    text-align: right;
    margin-bottom: 1.5rem;
}

.forgot-link {
    color: #8B5CF6;
    text-decoration: none;
    font-size: 14px;
}

.forgot-link:hover {
    color: #7C3AED;
    text-decoration: underline;
}

.enter-btn {
    width: 100%;
    background: #8B5CF6;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-family: "Fredoka One", sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enter-btn:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.divider {
    height: 1px;
    background: #333;
    margin: 2rem 0;
}

.signup-section {
    text-align: center;
    margin-bottom: 2rem;
}

.signup-text {
    color: white;
    font-size: 14px;
    margin-bottom: 1rem;
}

.affiliate-btn {
    display: inline-block;
    background: #8B5CF6;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-family: "Fredoka One", sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.affiliate-btn:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.modal-footer {
    text-align: center;
}

.modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.modal-logo-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-logo-text {
    font-family: "Fredoka One", sans-serif;
    font-size: 18px;
}

.modal-logo-text .desire {
    color: white;
}

.modal-logo-text .cash {
    background: linear-gradient(98deg, #F9C300 19.57%, #FFF 24.77%, #FFC800 30.77%, #FFD333 42.76%, #FFF9E2 46.76%, #FFC800 50.36%, #FFFDF5 58.2%, #FFC800 63.8%, #FFFDF6 79.15%, #FFC800 85.15%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support-link {
    font-size: 14px;
}

/* Validation Error Styles */
.validation-error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
    padding: 5px 8px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 4px;
    animation: errorFadeIn 0.3s ease-out;
}

@keyframes errorFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group input.error {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2) !important;
}

.form-group input.valid {
    border-color: #4ade80 !important;
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.2) !important;
}

.support-text {
    color: white;
}

.contact-support {
    color: #8B5CF6;
    text-decoration: none;
    margin-left: 0.5rem;
}

.contact-support:hover {
    color: #7C3AED;
    text-decoration: underline;
}

/* Responsive Design */
        @media (min-width: 720px) and (max-width: 1024px) {
            .earn-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }

            .earn-card {
                padding: 1.5rem;
                min-height: 200px;
            }

            .earn-card-image {
                width: 80px;
                height: 80px;
                margin-bottom: 1rem;
            }

            .earn-card h3 {
                font-size: 18px;
                margin-bottom: 0.75rem;
            }

            .earn-card p {
                font-size: 14px;
                line-height: 1.4;
            }

            .earn-title {
                font-size: 32px;
            }

            .earn-subtitle {
                font-size: 20px;
            }

            .earn-intro {
                font-size: 14px;
            }

            .marketing-arsenal {
                gap: 0;
            }

            .marketing-card {
                min-height: 120px;
                padding: 1.5rem;
                flex-direction: row;
                text-align: left;
            }

            .marketing-card:nth-child(even) {
                flex-direction: row-reverse;
            }

            .marketing-card:nth-child(even) .marketing-card-content {
                text-align: right;
            }

            .marketing-card-image {
                width: 100px;
                height: 100px;
                flex-shrink: 0;
            }

            .marketing-card h3 {
                font-size: 18px;
                margin-bottom: 0.5rem;
            }

            .marketing-card p {
                font-size: 14px;
                line-height: 1.4;
            }

            .marketing-title {
                font-size: 32px;
            }

            .marketing-subtitle {
                font-size: 20px;
            }

            .marketing-intro {
                font-size: 14px;
            }
        }

        @media (min-width: 1025px) {
            .earn-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }

            .marketing-card {
                flex-direction: row;
                text-align: left;
            }

            .marketing-card:nth-child(even) {
                flex-direction: row-reverse;
            }

            .marketing-card:nth-child(even) .marketing-card-content {
                text-align: right;
            }
        }

        @media (max-width: 1024px) {
            .hero-image {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .hero-text {
                max-width: 100%;
            }

            .hero-visual {
                display: none;
            }
        }

        @media (max-width: 719px) {
            .earn-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-center {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 32px;
    }

            .hero-bullets li {
                font-size: 20px;
                padding-left: 2rem;
                display: flex;
                align-items: center;
                min-height: 2rem;
            }

            .hero-bullets li::before {
                position: absolute;
                left: 0;
                flex-shrink: 0;
                width: 1.5rem;
                text-align: center;
            }

    .hero-description {
        font-size: 1rem;
    }


            .earn-card-image {
                width: 100px;
                height: 100px;
            }

            .earn-card-image img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .faq-title {
        font-size: 32px;
    }

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

    .faq-question-box,
    .faq-answer-box {
        max-width: 90%;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .about-subtitle {
        font-size: 20px;
    }

            .about-bullets li {
                font-size: 14px;
                padding-left: 1.5rem;
                display: flex;
                align-items: center;
                min-height: 1.5rem;
            }

            .about-bullets li::before {
                position: absolute;
                left: 0;
                flex-shrink: 0;
                width: 1.2rem;
                text-align: center;
            }

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

    .marketing-card {
        flex-direction: column !important;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .marketing-card:nth-child(even) .marketing-card-content {
        text-align: center;
    }

    .marketing-card-content {
        text-align: center;
    }

    .marketing-card h3 {
        text-align: center;
    }

    .marketing-card p {
        text-align: center;
    }

            .marketing-card-image {
                width: 120px;
                height: 120px;
                margin-bottom: 1rem;
            }

            .marketing-card-image img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

    .marketing-arsenal .section-title {
        font-size: 32px;
    }

    .marketing-subtitle {
        font-size: 20px;
    }

    .marketing-intro {
        font-size: 14px;
    }

    .marketing-card h3 {
        font-size: 16px;
    }

    .marketing-card p {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

            .footer-support-links {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .faq-toggle-btn {
                font-size: 14px;
                padding: 10px 25px;
            }

            .contact {
                background: #000000;
            }

            .contact-content {
                text-align: left;
                min-height: 400px;
            }

            .contact-text {
                max-width: 100%;
            }

            .contact-title {
                font-size: 32px;
                text-align: left;
            }

            .contact-description {
                font-size: 14px;
                text-align: left;
            }

            .contact-form .form-group label {
                text-align: left;
            }

            .contact-submit-btn {
                align-self: flex-start;
                width: 100%;
                max-width: 300px;
            }
        }

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

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

/* Payment Options Mobile Styles */
@media (max-width: 768px) {
    .payment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .payment-title {
        font-size: 32px;
    }
    
    .payment-methods {
        flex-direction: column;
        gap: 0.5rem;
        max-width: 100%;
    }
    
    .payment-method {
        padding: 0.5rem 0.75rem;
    }
}
