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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: #0f0f0f;
    border-bottom: 2px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: 900;
    background: linear-gradient(45deg, #00ff88, #0088ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.nav-menu .premium-nav {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    color: #000;
    font-weight: 700;
}

.nav-menu .premium-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Main Layout */
.main-wrapper {
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    background: #0a0a0a;
}

.sidebar-left, .sidebar-right {
    width: 300px;
    background: #0f0f0f;
    padding: 20px;
}

.sidebar-left {
    border-right: 1px solid #1a1a1a;
}

.sidebar-right {
    border-left: 1px solid #1a1a1a;
}

.main-content {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Glowing Effects */
.glow-text {
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 
                 0 0 40px rgba(0, 255, 136, 0.6),
                 0 0 60px rgba(0, 255, 136, 0.4);
    animation: pulse 2s infinite;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 136, 255, 0.1) 100%);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff88, #0088ff, #00ff88);
    background-size: 400% 400%;
    animation: gradient-shift 4s ease infinite;
    border-radius: 10px;
    z-index: -1;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #00ff88, #0088ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3em;
    color: #00ff88;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-description {
    font-size: 1.1em;
    color: #b8b8b8;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 25px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #00ff88;
    display: block;
}

.stat-label {
    color: #888;
    font-size: 0.9em;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #00ff88, #0088ff);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.premium-btn {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
}

.premium-btn:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Introduction Section */
.intro-section {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.intro-section h2 {
    color: #00ff88;
    margin-bottom: 20px;
    font-size: 2em;
}

.intro-section h3 {
    color: #00ff88;
    margin: 25px 0 15px 0;
    font-size: 1.5em;
}

.intro-section p {
    color: #b8b8b8;
    margin-bottom: 15px;
    line-height: 1.8;
}

.intro-section ul {
    list-style: none;
    padding: 0;
}

.intro-section ul li {
    padding: 10px 0;
    color: #b8b8b8;
    line-height: 1.8;
}

.investment-box {
    background: rgba(0, 255, 136, 0.1);
    border-left: 4px solid #00ff88;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.investment-box h3 {
    color: #00ff88;
    margin-bottom: 15px;
}

.investment-box p {
    margin-bottom: 10px;
}

.highlight {
    color: #ffd700 !important;
    font-weight: 700;
    font-size: 1.1em;
}

.keywords-box {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
}

.keywords-box h3 {
    color: #00ff88;
    margin-bottom: 15px;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.keyword-tags span {
    background: linear-gradient(45deg, #00ff88, #0088ff);
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

/* Section Titles */
.section-title {
    font-size: 2.5em;
    color: #00ff88;
    margin: 40px 0 20px 0;
    text-align: center;
}

.section-intro {
    text-align: center;
    color: #b8b8b8;
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Method Cards */
.method-card {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.method-number {
    background: linear-gradient(45deg, #00ff88, #0088ff);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 900;
    flex-shrink: 0;
}

.method-header h3 {
    font-size: 1.8em;
    color: #00ff88;
    margin-bottom: 5px;
}

.income-badge {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    font-size: 0.9em;
}

.method-preview p {
    color: #b8b8b8;
    margin-bottom: 15px;
    line-height: 1.8;
}

.quick-facts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.quick-facts span {
    background: #1a1a1a;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9em;
    color: #00ff88;
}

.method-details {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #1a1a1a;
}

.steps {
    margin: 20px 0;
}

.steps h4 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.steps ol {
    padding-left: 25px;
}

.steps ol li {
    color: #b8b8b8;
    margin-bottom: 12px;
    line-height: 1.8;
}

.steps ol li strong {
    color: #00ff88;
}

.success-story {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ffd700;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.success-story h4 {
    color: #ffd700;
    margin-bottom: 10px;
}

.success-story p {
    color: #b8b8b8;
    line-height: 1.8;
}

.success-story strong {
    color: #ffd700;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.pros, .cons {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
}

.pros {
    border-left: 4px solid #00ff88;
}

.cons {
    border-left: 4px solid #ff6b6b;
}

.pros h4 {
    color: #00ff88;
    margin-bottom: 15px;
}

.cons h4 {
    color: #ff6b6b;
    margin-bottom: 15px;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros ul li, .cons ul li {
    padding: 8px 0;
    color: #b8b8b8;
}

.pros ul li::before {
    content: "✓ ";
    color: #00ff88;
    font-weight: bold;
    margin-right: 5px;
}

.cons ul li::before {
    content: "✗ ";
    color: #ff6b6b;
    font-weight: bold;
    margin-right: 5px;
}

.platforms {
    margin: 20px 0;
}

.platforms h4 {
    color: #00ff88;
    margin-bottom: 15px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.platform-item {
    background: linear-gradient(45deg, #00ff88, #0088ff);
    color: #000;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}

.read-more-btn {
    background: linear-gradient(45deg, #00ff88, #0088ff);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1em;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* More Free Methods */
.more-free-methods {
    background: #0f0f0f;
    border: 2px solid #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.more-free-methods h3 {
    color: #00ff88;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.method-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.method-item {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #00ff88;
    text-align: left;
    color: #b8b8b8;
}

.unlock-message {
    color: #ffd700;
    font-size: 1.1em;
    margin-top: 20px;
    font-weight: 600;
}

/* Premium Section */
.premium-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.premium-intro {
    font-size: 1.2em;
    color: #b8b8b8;
    margin-bottom: 30px;
    line-height: 1.8;
}

.investment-comparison {
    background: #0f0f0f;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.investment-comparison h3 {
    color: #ffd700;
    margin-bottom: 20px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.comparison-item {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
}

.comparison-item.highlight {
    border: 2px solid #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.comparison-item h4 {
    color: #00ff88;
    margin-bottom: 10px;
}

.comparison-item .price {
    font-size: 2em;
    color: #ffd700;
    font-weight: 900;
    margin: 10px 0;
}

.comparison-item p {
    color: #b8b8b8;
}

.roi-text {
    color: #ffd700;
    font-size: 1.2em;
    font-weight: 700;
    margin-top: 20px;
}

.premium-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.premium-method-preview {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.premium-method-preview h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.premium-method-preview p {
    color: #00ff88;
    font-weight: 600;
}

.pricing-box {
    margin: 30px 0;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 1.5em;
    color: #888;
    text-decoration: line-through;
}

.new-price {
    font-size: 3em;
    color: #ffd700;
    font-weight: 900;
}

.discount {
    background: #ff6b6b;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
}

.limited-time {
    color: #ff6b6b;
    font-size: 1.1em;
    font-weight: 600;
}

.unlock-btn {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    color: #000;
    padding: 20px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.3em;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.unlock-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.guarantees {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.guarantees span {
    color: #00ff88;
    font-weight: 600;
}

.success-message {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid #00ff88;
    padding: 20px;
    border-radius: 10px;
    color: #00ff88;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.premium-unlocked-card {
    border: 2px solid #ffd700;
}

/* Ad Placements */
.ad-banner {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin: 15px 0;
    color: #666;
    font-size: 0.9em;
}

.ad-top {
    height: 90px;
    margin-bottom: 20px;
}

.ad-sidebar {
    width: 260px;
    height: 250px;
    margin: 15px 0;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #1a1a1a;
    margin-top: 60px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer p {
    color: #888;
    margin: 10px 0;
}

.disclaimer {
    font-size: 0.9em;
    font-style: italic;
}

/* Responsive */
@media (max-width: 1400px) {
    .sidebar-left, .sidebar-right {
        width: 250px;
    }
    .ad-sidebar {
        width: 210px;
    }
}

@media (max-width: 1200px) {
    .main-wrapper {
        flex-direction: column;
    }
    .sidebar-left, .sidebar-right {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        border: none;
        border-top: 1px solid #1a1a1a;
        border-bottom: 1px solid #1a1a1a;
    }
    .ad-sidebar {
        width: 48%;
        height: 120px;
    }
    .nav-menu {
        gap: 15px;
        font-size: 0.9em;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 15px;
    }
    .hero h1 {
        font-size: 2em;
    }
    .stats {
        flex-direction: column;
        gap: 15px;
    }
    .pros-cons {
        grid-template-columns: 1fr;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    .sidebar-left, .sidebar-right {
        flex-direction: column;
    }
    .ad-sidebar {
        width: 100%;
        height: 250px;
    }
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    .method-header {
        flex-direction: column;
        text-align: center;
    }
}

html {
    scroll-behavior: smooth;
}