:root {
    --primary-color: #e60000;
    --primary-dark: #c40000;
    --primary-light: #ff3333;
    --secondary-color: #222222;
    --accent-color: #f5f5f5;
    --text-color: #333333;
    --text-light: #777777;
    --text-white: #ffffff;
    --bg-dark: #111111;
    --bg-light: #f9f9f9;
    --success-color: #28a745;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section-header span {
    color: var(--primary-color);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-light{
    background-color: var(--bg-light);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
}

.btn-light:hover {
    background-color: var(--primary-dark);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 0, 0.4);
}


.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-light);
}

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

.mobile-menu-btn {
    display: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-dark);
    padding: 2rem;
    z-index: 1001;
    transition: right 0.3s ease;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    color: var(--text-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.mobile-menu .mobile-cta {
    margin-top: 2rem;
    border: none;
    text-align: center;
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('grid-pattern.png');
    opacity: 0.05;
}

.hero-content {
    max-width: 600px;
    color: var(--text-white);
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--primary-color);
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    max-width: 650px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.hero-image-container:hover img {
    transform: scale(1.02);
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(230, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-image-container:hover .glow-effect {
    opacity: 1;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 2rem 5%;
    background-color: var(--primary-color);
    color: var(--text-white);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--text-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: rgba(230, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Showcase Section */
.showcase {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    background-color: var(--bg-dark);
    color: var(--text-white);
    flex-wrap: wrap;
}

.showcase-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.showcase-content h2 {
    margin-bottom: 1.5rem;
}

.showcase-content span {
    color: var(--primary-color);
}

.showcase-content p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.showcase-list {
    margin-bottom: 2rem;
}

.showcase-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.showcase-list i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.showcase-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.showcase-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
}

/* Benefits Section */
.benefits {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

.benefit-item {
    display: flex;
    margin-bottom: 2.5rem;
    gap: 1.5rem;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
    background-color: rgba(230, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.benefit-content h3 {
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Signal Showcase Section */
.signal-showcase {
    padding: 5rem 5%;
    background-color: var(--text-white);
}

.signal-image {
    max-width: 1000px;
    margin: 0 auto 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.signal-image img {
    width: 100%;
    height: auto;
    display: block;
}

.signal-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.signal-feature {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.signal-feature:hover {
    transform: translateY(-5px);
}

.signal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-white);
}

.buy-icon {
    background-color: #28a745;
}

.sell-icon {
    background-color: #dc3545;
}

.tp-icon {
    background-color: #17a2b8;
}

.sl-icon {
    background-color: #6c757d;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    width: 100%;
}

.testimonial-content {
    background!-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.testimonial-rating {
    color: #ffc107;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    opacity: 1;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Testimonial Channels */
.testimonial-channels {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.channel-card {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.channel-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-medium);
}

.channel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: rgba(0, 136, 204, 0.2);
    border-radius: 50%;
    font-size: 2rem;
    color: #0088cc;
}

.channel-card h3 {
    margin-bottom: 1rem;
}

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

.channel-card .btn {
    margin-top: 0.5rem;
    background-color: #0088cc;
    color: white;
    border: none;
}

.channel-card .btn:hover {
    background-color: #006699;
}

/* Pricing Section */
.pricing {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.pricing-container {
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--text-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
}

.pricing-header h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--success-color);
    margin-right: 1rem;
}

.pricing-action {
    padding: 0 2rem 2rem;
    text-align: center;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.02);
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-guarantee i {
    color: var(--primary-color);
}

.pricing-guarantee p {
    margin-bottom: 0;
}

/* Demo Section */
.demo {
    padding: 5rem 5%;
    background-color: var(--text-white);
}

.demo-video {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2rem;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

/* FAQ Section */
.faq {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    background-color: var(--text-white);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

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

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin-bottom: 0;
}

.faq-item.active .faq-question {
    background-color: rgba(230, 0, 0, 0.05);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}
/* Buy Now Section */
.buy-now {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    color: var(--text-white);
}

.buy-now-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.buy-now-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.buy-now-content h2 {
    margin-bottom: 1.5rem;
}

.buy-now-content span {
    color: var(--primary-color);
}

.buy-now-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.buy-now-features {
    margin-bottom: 2rem;
}

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

.buy-feature i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.payment-methods {
    margin-top: 2rem;
}

.payment-icons {
    max-width: 250px;
}

.buy-now-image {
    flex: 1;
    min-width: 300px;
}

.buy-now-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
}

/* Payment Form Section */
.payment-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}


.payment-methods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.payment-method-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: var(--text-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: var(--transition);
}

.payment-method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.payment-method-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 1.5rem;
    text-align: center;
}

.payment-method-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.payment-method-header h3 {
    margin-bottom: 0;
}

.payment-method-content {
    padding: 2rem;
}

.payment-method-content p {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Payment Page Styles */
.payment-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    padding: 120px 5% 60px;
    text-align: center;
    color: var(--text-white);
    position: relative;
}

.payment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('grid-pattern.png');
    opacity: 0.05;
}

.payment-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.payment-hero-content h1 {
    margin-bottom: 1rem;
}

.payment-hero-content span {
    color: var(--primary-color);
}

.payment-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.payment-options-page {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.payment-methods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

/* Crypto Payment Styles */
.crypto-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.qr-code {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--text-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.qr-code img {
    max-width: 200px;
    height: auto;
    display: block;
}

.wallet-address {
    width: 100%;
    text-align: center;
}

.network-type {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.address-copy {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.address-copy input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    background-color: transparent;
    font-size: 0.8rem;
    text-overflow: ellipsis;
    font-family: monospace;
}

.copy-btn {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    background-color: var(--primary-dark);
}

.copy-message {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Bank Transfer Styles */
.bank-details {
    margin-bottom: 2rem;
}

.bank-detail-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.detail-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.detail-value {
    font-weight: 600;
    color: var(--text-color);
}

/* WhatsApp Button */
.payment-instructions {
    text-align: center;
}

.whatsapp-btn, .paystack-btn, .support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #25D366;
    color: var(--text-white);
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
}

.whatsapp-btn:hover, .support-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

.paystack-btn {
    background-color: #0BA4DB;
}

.paystack-btn:hover {
    background-color: #0989B9;
    transform: translateY(-3px);
}

.payment-support {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--text-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.support-btn {
    margin-top: 1rem;
    display: inline-flex;
}

/* TikTok Showcase Section */
.tiktok-showcase {
    padding: 5rem 5%;
    background-color: var(--bg-dark);
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tiktok-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('grid-pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.tiktok-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tiktok-content:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.tiktok-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #25F4EE 10%, #FE2C55 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    color: var(--text-white);
    animation: pulse 2s infinite;
}

.tiktok-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #FE2C55;
}

.tiktok-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.tiktok-content .btn {
    background-color: #FE2C55;
    color: white;
    border: none;
}

.tiktok-content .btn:hover {
    background-color: #E61E4D;
}

/* Description Page Styles */
.description-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    padding: 120px 5% 60px;
    text-align: center;
    color: var(--text-white);
    position: relative;
}

.description-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('grid-pattern.png');
    opacity: 0.05;
}

.description-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.description-hero-content h1 {
    margin-bottom: 1rem;
}

.description-hero-content span {
    color: var(--primary-color);
}

.description-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.description-content {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.description-intro, 
.description-features, 
.description-importance, 
.description-audience, 
.description-conclusion {
    max-width: 1000px;
    margin: 0 auto 5rem;
    background-color: var(--text-white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
}

.intro-icon,
.section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: rgba(230, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.description-intro h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.description-intro p {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: 2rem;
    margin-bottom: 0;
}

.feature-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    background-color: rgba(230, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
}

.feature-header h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.feature-list, .importance-list {
    padding-left: 1.5rem;
}

.feature-list li, .importance-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.6;
}

.feature-list li i, .importance-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
}

.nested-list {
    margin: 1rem 0 1rem 1.5rem;
}

.nested-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
}

.description-importance p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.importance-list {
    margin-bottom: 2rem;
}

.importance-list li {
    font-weight: 500;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.audience-item {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.audience-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.audience-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.audience-item p {
    margin-bottom: 0;
    font-weight: 500;
}

.description-conclusion p {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.quote-block {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    margin: 3rem 0;
}

.quote-block i {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    background-color: var(--bg-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.quote-block p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0;
}

.conclusion-text {
    font-size: 1.5rem !important;
    font-weight: 600;
    margin-bottom: 1rem !important;
}

.description-cta {
    text-align: center;
}

.description-cta .btn {
    margin-bottom: 1.5rem;
}

.description-cta p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Manual Page Styles */
.manual-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    padding: 120px 5% 60px;
    text-align: center;
    color: var(--text-white);
    position: relative;
}

.manual-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('grid-pattern.png');
    opacity: 0.05;
}

.manual-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.manual-hero-content h1 {
    margin-bottom: 1rem;
}

.manual-hero-content span {
    color: var(--primary-color);
}

.manual-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.manual-content {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.manual-container {
    display: flex; /* Enable flexbox for side-by-side layout */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    gap: 2rem; /* Space between cards */
    max-width: 1200px; /* Max width for the container */
    margin: 0 auto 5rem; /* Center the container and add bottom margin */
    justify-content: center; /* Center cards when they don't fill the row */
}

.manual-card {
    flex: 1 1 calc(50% - 1rem); /* Allow cards to grow/shrink, with a preferred basis of 50% minus half the gap */
    min-width: 300px; /* Minimum width before cards stack */
    background-color: var(--text-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: var(--transition);
    padding: 2.5rem; /* Add padding inside the card */
    text-align: center; /* Center align content within the card by default */
}

.manual-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.manual-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem; /* Center icon within the card */
    background-color: rgba(230, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.manual-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.manual-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.manual-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left; /* Align list items to the left for readability */
}

.manual-features li {
    display: flex;
    align-items: flex-start; /* Align icon to the top of the text */
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.manual-features li i {
    color: var(--success-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
    margin-top: 4px; /* Adjust icon vertical alignment */
}

/* Community benefits inside the second manual card */
.community-benefits {
    display: flex;
    flex-direction: column; /* Stack individual benefit items */
    gap: 1.5rem;
    margin-top: 2rem;
}

.community-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: left; /* Ensure text within benefit item is left-aligned */
}

.community-benefits .benefit-icon {
    min-width: 50px; /* Fixed width for the icon circle */
    height: 50px;
    font-size: 1.5rem;
    margin: 0; /* Override general manual-icon margin */
}

.telegram-icon {
    background-color: rgba(0, 136, 204, 0.1); /* Light background for Telegram icon */
    color: #0088cc; /* Telegram brand color */
}

.whatsapp-icon {
    background-color: rgba(37, 211, 102, 0.1); /* Light background for WhatsApp icon */
    color: #25D366; /* WhatsApp brand color */
}

.community-benefits .benefit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.community-benefits .benefit-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Legacy System Section Styles */
.legacy-system {
    margin: 4rem auto; /* Center the legacy system section */
    max-width: 1000px; /* Ensure it doesn't get too wide */
    background-color: var(--text-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}



.legacy-container {
    padding: 3rem;
}

@media (max-width: 768px) {
    .legacy-system {
        margin: 2rem auto;
    }
    .legacy-container {
        padding: 1rem;
    }
}
.legacy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legacy-header h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.legacy-header h2 span {
    color: var(--primary-color);
}

.legacy-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.legacy-intro {
    margin-bottom: 2.5rem;
    text-align: center;
}

.legacy-intro h3 {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legacy-intro h3 i {
    margin-right: 0.5rem;
}

.legacy-intro p {
    max-width: 800px;
    margin: 0 auto;
}

.legacy-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.step-card {
    display: flex;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    flex-direction: row; /* default for desktop */
}

@media (max-width: 768px) {
    .step-card {
        flex-direction: column; /* stack vertically on mobile */
    }
}


.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    font-size: 2rem;
    font-weight: 700;
    background-color: var(--primary-color);
    color: var(--text-white);
}

.step-content {
    padding: 1.5rem;
    flex: 1;
    text-align: left; /* Ensure text within steps is left-aligned */
}

.step-content h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step-content h3 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.step-list, .example-list, .guidelines-list {
    margin-bottom: 1rem;
    padding-left: 0; /* Reset padding to control manually */
}

.step-list li, .example-list li, .guidelines-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem; /* Indent list items */
}

.step-list li:before, .example-list li:before, .guidelines-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.step-numbered-list {
    list-style-type: decimal;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.step-numbered-list li {
    margin-bottom: 0.5rem;
}

.pro-tip {
    background-color: rgba(230, 0, 0, 0.1);
    border-left: 3px solid var(--primary-color);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.pro-tip i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.trend, .sentiment {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-right: 0.5rem;
}

.trend.up, .sentiment.bullish {
    color: #28a745;
}

.trend.down, .sentiment.bearish {
    color: #dc3545;
}

.sentiment.flat {
    color: #fd7e14;
}

.trend i, .sentiment i {
    margin-right: 0.3rem;
}

.strategy-example, .guidelines, .final-thought {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-light);
    text-align: left; /* Ensure text is left-aligned */
}

.strategy-example h3, .guidelines h3, .final-thought h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.strategy-example h3 i, .guidelines h3 i, .final-thought h3 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.final-thought {
    text-align: center;
}

.final-thought p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
}

.manual-cta {
    text-align: center;
    max-width: 800px;
    margin: 5rem auto 0; /* Center and provide top margin */
}

.manual-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.manual-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.manual-cta .btn {
    margin-bottom: 0;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

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

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero {
        flex-direction: column;
        padding-bottom: 50px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .showcase {
        flex-direction: column;
    }
    
    .showcase-content {
        margin-bottom: 3rem;
        padding-right: 0;
    }
    
    .buy-now-container {
        /* flex-direction: column; -- REMOVED to allow side-by-side on larger desktops */
    }
    
    .buy-now-content {
        margin-bottom: 3rem; /* Keep this for spacing when items wrap and stack */
        /* padding-right: 0; -- No longer needed as it's removed from main rule */
    }
    
    .buy-now-image {
        flex: 1 1 calc(50% - 1.5rem); /* Reapply flex basis to ensure consistent behavior */
        min-width: 300px; /* Ensure min-width for consistent responsiveness */
    }
}

@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem; /* Reduce gap when stacking */
    }

    .footer-logo {
        margin-bottom: 1.5rem; /* Adjust margin */
        text-align: center; /* Center align logo */
    }

    .footer-links {
        justify-content: center; /* Center align columns when wrapped */
        width: 100%;
        margin-bottom: 1.5rem; /* Adjust margin */
        min-width: unset; /* Allow flexibility */
    }

    .footer-column {
        min-width: 45%; /* Keep two columns if possible */
        max-width: unset; /* Remove max-width on mobile */
        margin-bottom: 1rem; /* Add margin between stacked columns */
    }
    
    .footer-column h3, .footer-column a {
        text-align: center;
    }

    .footer-social {
        text-align: center;
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 2rem; /* Adjust margin on mobile */
        padding-top: 1rem; /* Adjust padding on mobile */
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-links, .cta-button {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto 1rem;
    }
    
    .payment-container {
        padding: 2rem;
    }
    
    .channel-card {
        min-width: 100%;
    }
    
    .tiktok-content {
        padding: 2rem;
    }
    
    .tiktok-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .description-intro, 
    .description-features, 
    .description-importance, 
    .description-audience, 
    .description-conclusion {
        padding: 2rem;
    }
    
    .intro-icon,
    .section-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .description-intro h2 {
        font-size: 1.8rem;
    }
    
    .section-heading h2 {
        font-size: 1.6rem;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .quote-block p {
        font-size: 1.3rem;
    }

    /* Manual page responsiveness */
    .manual-card {
        flex: 1 1 100%; /* Stack cards on smaller screens */
        min-width: unset; /* Remove min-width for full stacking */
        padding: 2rem;
    }

    .manual-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .manual-card h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .footer-column {
        width: 100%; /* Stack columns on very small screens */
        min-width: unset;
    }
    .footer-links {
        gap: 1rem; /* Reduce gap further */
    }
}

/* Footer Styles */
footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 5%; /* Increased vertical padding */
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('grid-pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem; /* Increased gap for main sections */
    position: relative;
    z-index: 2;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-right: 0; /* Remove explicit margin-right, let gap handle it */
    text-align: left; /* Ensure left alignment on desktop */
}

.footer-logo .logo {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex: 2;
    justify-content: space-between; /* Changed to space-between for better distribution */
    flex-wrap: wrap;
    gap: 2rem; /* Increased gap for link columns */
    min-width: 450px; /* Ensure links section has enough space on wider screens */
}

.footer-column {
    flex: 1;
    min-width: 150px;
    max-width: 200px; /* Limit column width for better readability */
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.2rem 0; /* Add subtle vertical padding to links */
    font-size: 0.95rem; /* Slightly larger font for readability */
}

.footer-column a:hover {
    color: var(--primary-light);
    transform: translateX(5px); /* Add a slight slide effect on hover */
}

.footer-social {
    flex: 1;
    min-width: 200px;
    text-align: right;
}

.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem; /* Increased margin-top for better separation */
    padding-top: 2rem; /* Increased padding-top */
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Slightly thicker border */
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom .disclaimer {
    font-style: italic;
    font-size: 0.8rem;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta .btn {
    padding: 10px 20px;
    font-size: 1rem;
}

/* Responsive adjustments for floating CTA */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 15px;
        right: 15px;
    }
    .floating-cta .btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .floating-cta {
        bottom: 10px;
        right: 10px;
    }
    .floating-cta .btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* Trading Gallery Section */
.trading-gallery {
    padding: 5rem 5%;
    background-color: var(--bg-dark);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.trading-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('grid-pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.trading-gallery .section-header {
    position: relative;
    z-index: 2;
}

.trading-gallery .section-header h2,
.trading-gallery .section-header p {
    color: var(--text-white);
}

.trading-gallery .section-header span {
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(230, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(230, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    text-align: center;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: var(--text-white);
}

.gallery-overlay p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
    animation: modalImageIn 0.3s ease;
}

@keyframes modalImageIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.modal-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 2rem;
}

.modal-prev,
.modal-next {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    pointer-events: all;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .modal-navigation {
        padding: 0 1rem;
    }
    
    .modal-prev,
    .modal-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modal-close {
        top: -40px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
    
    .gallery-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    padding: 120px 5% 60px;
    text-align: center;
    color: var(--text-white);
    position: relative;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('grid-pattern.png');
    opacity: 0.05;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.legal-hero-content h1 {
    margin-bottom: 1rem;
}

.legal-hero-content span {
    color: var(--primary-color);
}

.legal-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.legal-content {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--text-white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
}

.legal-header h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.legal-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.legal-jurisdiction {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.effective-date {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.legal-intro {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.legal-intro p {
    margin-bottom: 0;
    line-height: 1.7;
}

.legal-sections {
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.section-number {
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.legal-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
    background-color: rgba(230, 0, 0, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.legal-footer p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-color);
}

/* Refund Policy Specific Styles */
.no-refunds {
    background-color: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.no-refunds h3 {
    color: #dc3545;
    display: flex;
    align-items: center;
}

.no-refunds h3 i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.contact-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.whatsapp-link {
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.whatsapp-link:hover {
    color: #128C7E;
}

.whatsapp-link i {
    margin-right: 0.5rem;
}

/* Risk Disclaimer Specific Styles */
.risk-warning {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    border: 2px solid #dc3545;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.warning-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #dc3545;
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--text-white);
}

.risk-warning h3 {
    color: #dc3545;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.risk-warning p {
    font-weight: 500;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.risk-list, .practice-list {
    list-style: none;
    padding: 0;
}

.risk-list li, .practice-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-left: 0;
}

.risk-list li i {
    color: #dc3545;
    margin-right: 1rem;
    margin-top: 4px;
    min-width: 16px;
}

.practice-list li i {
    color: var(--success-color);
    margin-right: 1rem;
    margin-top: 4px;
    min-width: 16px;
}

.disclaimer-box {
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.disclaimer-box p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-container {
        padding: 2rem;
    }
    
    .legal-header h2 {
        font-size: 1.6rem;
    }
    
    .legal-intro {
        padding: 1rem;
    }
    
    .warning-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .risk-warning {
        padding: 1.5rem;
    }
    
    .risk-warning h3 {
        font-size: 1.3rem;
    }
}