/* SideK1ck - Main Stylesheet */
:root {
    --primary: #00d4ff;
    --primary-dark: #00a8cc;
    --secondary: #7c3aed;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --text: #ffffff;
    --text-muted: #9ca3af;
    --success: #10b981;
    --accent: #f59e0b;
    --border: rgba(255,255,255,0.08);
    --container: 1100px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* Header */
header {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo-icon { font-size: 28px; }
nav { display: flex; gap: 30px; align-items: center; }
nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
nav a:hover, nav a.active { color: var(--primary); }
nav a.cta {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
}
nav a.cta:hover { background: var(--primary-dark); }

/* Hero */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
}
.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 22px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
}
.hero-buttons { display: flex; gap: 15px; justify-content: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-dark);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.25);
}
.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--primary); }

/* Sections */
.section { padding: 70px 0; }
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.section-title { font-size: 30px; font-weight: 700; }
.section-title span { color: var(--primary); }
.view-all { color: var(--primary); text-decoration: none; font-weight: 500; }

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.post-card {
    background: var(--bg-card);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.post-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.post-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}
.post-image.prompts { background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%); }
.post-image.automation { background: linear-gradient(135deg, #2d1b4e 0%, #1a1a2e 100%); }
.post-image.money { background: linear-gradient(135deg, #1a2f1e 0%, #0f1a12 100%); }
.post-image.default { background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%); }

.post-content { padding: 24px; }
.post-tag {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.post-title { font-size: 19px; font-weight: 700; margin: 12px 0; line-height: 1.35; }
.post-excerpt { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.post-meta { font-size: 13px; color: var(--text-muted); }

/* Free Section */
.free-section {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(0, 212, 255, 0.08) 100%);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.25);
}
.free-section h2 { font-size: 34px; margin-bottom: 12px; font-weight: 750; }
.free-section p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 18px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.email-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}
.email-form input {
    flex: 1;
    padding: 16px 22px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: var(--text);
    font-size: 16px;
}
.email-form input:focus { outline: none; border-color: var(--primary); }

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.product-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.product-card:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
}
.product-icon { font-size: 34px; margin-bottom: 14px; }
.product-title { font-weight: 650; font-size: 16px; margin-bottom: 6px; }
.product-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.product-price { font-size: 20px; font-weight: 750; color: var(--success); }
.product-price .free { color: var(--accent); }

/* Blog Post Page */
.article-header { text-align: center; padding: 60px 0 40px; }
.article-meta { color: var(--text-muted); font-size: 14px; margin-top: 15px; }
.article-header .post-tag { margin-bottom: 15px; display: inline-block; }
.article-header h1 { font-size: 42px; line-height: 1.2; max-width: 800px; margin: 0 auto 20px; }
.article-content { max-width: 720px; margin: 0 auto; font-size: 18px; line-height: 1.8; }
.article-content p { margin-bottom: 24px; color: var(--text-muted); }
.article-content h2 { font-size: 28px; margin: 40px 0 20px; color: var(--text); }
.article-content h3 { font-size: 22px; margin: 30px 0 15px; }
.article-content ul, .article-content ol { margin: 0 0 24px 20px; color: var(--text-muted); }
.article-content li { margin-bottom: 10px; }
.article-content code { background: var(--bg-card); padding: 2px 8px; border-radius: 4px; font-size: 15px; }
.article-content pre { background: var(--bg-card); padding: 20px; border-radius: 12px; overflow-x: auto; margin-bottom: 24px; }
.article-content pre code { padding: 0; }

/* Product Page */
.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
    align-items: center;
}
.product-hero h1 { font-size: 38px; margin-bottom: 15px; }
.product-hero .price { font-size: 36px; font-weight: 750; color: var(--success); margin: 20px 0; }
.product-hero .desc { font-size: 18px; color: var(--text-muted); margin-bottom: 30px; }
.product-preview {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border);
    text-align: center;
}
.product-features { margin: 40px 0; }
.product-features h3 { font-size: 20px; margin-bottom: 20px; }
.product-features ul { list-style: none; }
.product-features li { padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.product-features li::before { content: "✓"; color: var(--success); margin-right: 10px; }

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 50px 0;
    margin-top: 60px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo { font-size: 18px; font-weight: 700; }
.footer-copy { color: var(--text-muted); font-size: 14px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; }

/* Page Header */
.page-header {
    text-align: center;
    padding: 60px 0;
    background: radial-gradient(ellipse at top, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
}
.page-header h1 { font-size: 44px; margin-bottom: 15px; }
.page-header p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Mobile */
@media (max-width: 768px) {
    .hero h1 { font-size: 38px; }
    .hero p { font-size: 18px; }
    .posts-grid, .products-grid { grid-template-columns: 1fr; }
    nav { display: none; }
    .email-form { flex-direction: column; }
    .footer-inner { flex-direction: column; gap: 25px; text-align: center; }
    .free-section { padding: 40px 25px; }
    .product-hero { grid-template-columns: 1fr; }
}
