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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 3px solid #667eea;
    margin-bottom: 2rem;
}

header h1 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

main {
    padding-bottom: 3rem;
}

h2 {
    font-size: 1.8rem;
    color: #667eea;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

h3 {
    font-size: 1.4rem;
    color: #764ba2;
    margin: 1.5rem 0 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

.intro {
    font-size: 1.1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    margin-bottom: 2rem;
}

ol, ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

.featured-section h2 {
    margin-top: 0;
}

ul li strong {
    color: #667eea;
}

creators-section {
    margin-top: 2rem;
}

.creator-card {
    background: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #764ba2;
    transition: transform 0.2s ease;
}

.creator-card:hover {
    transform: translateX(10px);
}

.creator-card h3 {
    margin: 0 0 0.5rem;
    color: #764ba2;
}

.creator-card p {
    margin: 0;
}

.category {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

why-gumroad-section, how-to-discover-section, tips-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.tip-list li {
    margin-bottom: 1rem;
}

footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 3px solid #667eea;
    text-align: center;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.cta-section h2 {
    color: white;
    border: none;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.copyright {
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    header h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .cta-section {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}