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

body {
    font-family: 'Courier New', monospace;
    background: #000;
    color: #00ff00;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Matrix Background Animation */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
    overflow: hidden;
}

.matrix-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 98px,
        rgba(0, 255, 0, 0.03) 100px
    );
    animation: matrix-lines 20s linear infinite;
}

@keyframes matrix-lines {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

/* Mobile Warning */
.mobile-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.warning-content {
    text-align: center;
    padding: 40px;
    border: 2px solid #00ff00;
    background: #001100;
    border-radius: 10px;
    max-width: 400px;
}

.warning-content h3 {
    color: #ff0000;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 17, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #00ff00;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.logo-subtitle {
    font-size: 12px;
    color: #00aa00;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #00ff00;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    text-shadow: 0 0 5px #00ff00;
}

/* Language Banner */
.language-banner {
    margin-top: 80px;
    background: linear-gradient(90deg, #001100, #002200, #001100);
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #00ff00;
}

.lang-en, .lang-fr {
    margin: 0 20px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 17, 0, 0.6));
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px #00ff00;
}

.typing-text {
    border-right: 3px solid #00ff00;
    animation: typing 3s steps(20), blink 1s infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: #00ff00; }
    51%, 100% { border-color: transparent; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #00aa00;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border: 2px solid #00ff00;
    background: transparent;
    color: #00ff00;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    transform: translateY(-2px);
}

.btn-primary {
    background: #00ff00;
    color: #000;
}

.btn-primary:hover {
    background: transparent;
    color: #00ff00;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 15px #00ff00;
}

/* Security Section */
.security {
    background: linear-gradient(135deg, #001100, #000000);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.security-card {
    background: rgba(0, 17, 0, 0.5);
    border: 1px solid #00ff00;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.security-card:hover::before {
    opacity: 1;
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.security-card h3 {
    color: #00ff00;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.security-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Rules Section */
.rules {
    background: #000;
}

.rules-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.rules-column h3 {
    color: #00ff00;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid #00ff00;
    padding-bottom: 10px;
}

.rules-column ul {
    list-style: none;
}

.rules-column li {
    padding: 10px 0;
    border-bottom: 1px solid #003300;
    color: #cccccc;
    position: relative;
    padding-left: 20px;
}

.rules-column li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ff00;
}

/* Escrow Section */
.escrow {
    background: linear-gradient(135deg, #000000, #001100);
}

.escrow-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.flow-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 17, 0, 0.3);
    border: 1px solid #00ff00;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #00ff00;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.flow-arrow {
    font-size: 2rem;
    color: #00ff00;
    animation: pulse 2s infinite;
}

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

/* Gallery Section */
.gallery {
    background: #000;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    border: 2px solid #00ff00;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-item {
    min-width: 100%;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.2);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #00ff00;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 0, 0.8);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-btn:hover {
    background: #00ff00;
    transform: translateY(-50%) scale(1.1);
}

/* Bitcoin Section */
.bitcoin {
    background: linear-gradient(135deg, #001100, #000000);
}

.bitcoin-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.bitcoin-info h3 {
    color: #00ff00;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.bitcoin-info ul {
    list-style: none;
    margin-top: 20px;
}

.bitcoin-info li {
    padding: 8px 0;
    color: #cccccc;
    position: relative;
    padding-left: 20px;
}

.bitcoin-info li::before {
    content: '₿';
    position: absolute;
    left: 0;
    color: #00ff00;
}

.bitcoin-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: rgba(0, 17, 0, 0.5);
    border: 1px solid #00ff00;
    padding: 20px;
    text-align: center;
}

.feature-card h4 {
    color: #00ff00;
    margin-bottom: 10px;
}

/* Registration Section */
.registration {
    background: #000;
}

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

.reg-step {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 17, 0, 0.3);
    border: 1px solid #00ff00;
    transition: all 0.3s ease;
}

.reg-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.2);
}

.reg-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.reg-step h3 {
    color: #00ff00;
    margin-bottom: 15px;
}

.reg-step p {
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #001100;
    border-top: 2px solid #00ff00;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #00ff00;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 5px 0;
    color: #cccccc;
}

.footer-section li:hover {
    color: #00ff00;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #003300;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-warning {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .escrow-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .bitcoin-content {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00aa00;
}

/* Selection Styling */
::selection {
    background: #00ff00;
    color: #000;
}

/* Additional Animations */
@keyframes glow {
    0%, 100% { text-shadow: 0 0 5px #00ff00; }
    50% { text-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00; }
}

.hero-title {
    animation: glow 3s ease-in-out infinite;
}


/* About Section Styles */
.about-section {
    background: linear-gradient(135deg, #000000, #001100);
    padding: 120px 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23003300" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 17, 0, 0.3);
    padding: 40px;
    border: 1px solid #00ff00;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.about-content h3 {
    color: #00ff00;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 30px;
    text-shadow: 0 0 10px #00ff00;
    border-bottom: 2px solid #00ff00;
    padding-bottom: 10px;
}

.about-content h3:first-child {
    margin-top: 0;
}

.about-content p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-content ul {
    list-style: none;
    margin: 20px 0;
}

.about-content li {
    color: #cccccc;
    padding: 15px 0;
    border-bottom: 1px solid #003300;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.about-content li:hover {
    color: #ffffff;
    transform: translateX(10px);
}

.about-content li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ff00;
    font-size: 0.8rem;
    top: 15px;
}

.about-content strong {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

/* Links Section Styles */
.links-section {
    background: linear-gradient(135deg, #001100, #000000);
    padding: 120px 0;
    position: relative;
}

.links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(0, 255, 0, 0.02) 52px
    );
    z-index: -1;
}

.links-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 17, 0, 0.3);
    padding: 40px;
    border: 1px solid #00ff00;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.links-content h3 {
    color: #00ff00;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 0 10px #00ff00;
    border-bottom: 2px solid #00ff00;
    padding-bottom: 10px;
    position: relative;
}

.links-content h3:first-child {
    margin-top: 0;
}

.links-content h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00aa00;
    animation: underline-expand 2s ease-in-out infinite;
}

@keyframes underline-expand {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

.links-content p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.links-content ul {
    list-style: none;
    margin: 20px 0;
}

.links-content li {
    color: #cccccc;
    padding: 20px;
    margin: 15px 0;
    background: rgba(0, 17, 0, 0.2);
    border: 1px solid #003300;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.links-content li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.links-content li:hover::before {
    left: 100%;
}

.links-content li:hover {
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    transform: translateY(-5px);
}

.links-content strong {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
    font-size: 1.1rem;
}

.links-content a {
    color: #00aa00;
    text-decoration: none;
    border-bottom: 1px solid #00aa00;
    transition: all 0.3s ease;
    position: relative;
}

.links-content a:hover {
    color: #00ff00;
    border-bottom-color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.links-content a::after {
    content: ' ↗';
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

/* Enhanced Security Card Animations */
.security-card {
    position: relative;
    overflow: hidden;
}

.security-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff00, #00aa00, #00ff00);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.security-card:hover::after {
    opacity: 1;
    animation: border-glow 2s linear infinite;
}

@keyframes border-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .about-content,
    .links-content {
        padding: 20px;
        margin: 0 20px;
    }
    
    .about-content h3,
    .links-content h3 {
        font-size: 1.5rem;
    }
    
    .about-content p,
    .links-content p {
        font-size: 1rem;
    }
    
    .links-content li {
        padding: 15px;
    }
}

/* Loading Animation for New Pages */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-text {
    color: #00ff00;
    font-size: 1.5rem;
    text-shadow: 0 0 10px #00ff00;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px #00ff00;
    }
    50% {
        opacity: 0.5;
        text-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00;
    }
}

/* Enhanced Navigation Active States */
.nav-link.active {
    background: rgba(0, 255, 0, 0.1);
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00ff00, #00aa00);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(135deg, #000000, #001100);
    border-top: 2px solid #00ff00;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff00, transparent);
    animation: footer-glow 3s ease-in-out infinite;
}

@keyframes footer-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer a {
    color: #00aa00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}


/* Privacy Intro Section Styles */
.privacy-intro {
    background: linear-gradient(135deg, #001a00, #000000);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-intro::before {
    content: ‘’;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,255,0,0.05) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
    z-index: 0;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.privacy-intro .container {
    position: relative;
    z-index: 1;
}

.privacy-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.privacy-intro-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.intro-card {
    background: rgba(0, 17, 0, 0.4);
    border: 1px solid #00ff00;
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: ‘’;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,255,0,0.05), transparent);
    z-index: 0;
    transition: transform 0.5s ease;
}

.intro-card:hover::before {
    transform: scale(1.5) rotate(45deg);
}

.intro-card h3 {
    font-size: 1.5rem;
    color: #00ff00;
    margin-bottom: 15px;
    text-shadow: 0 0 8px #00ff00;
    position: relative;
    z-index: 1;
}

.intro-card h3 a {
    color: #00ff00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.intro-card h3 a:hover {
    color: #ffffff;
    text-shadow: 0 0 15px #00ff00;
}

.intro-card p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .privacy-intro-cards {
        flex-direction: column;
        align-items: center;
    }
    .intro-card {
        max-width: 90%;
    }
}



/* Canadian Market Section Styles */
.canadian-market-section {
    background: #0a0a0a;
    padding: 80px 0;
    text-align: center;
}

.market-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.market-content p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.market-content h3 {
    font-size: 1.5rem;
    color: #00ff00;
    margin-top: 30px;
    margin-bottom: 15px;
}

.market-content ul {
    list-style: none;
    padding: 0;
}

.market-content ul li {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.market-content ul li::before {
    content: '✓';
    color: #00ff00;
    position: absolute;
    left: 0;
}

