@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #07070a;
    --bg-card: rgba(18, 18, 24, 0.65);
    --bg-card-hover: rgba(26, 26, 36, 0.85);
    --border-color: rgba(255, 179, 0, 0.15);
    --border-color-hover: rgba(255, 179, 0, 0.35);
    
    --primary: #ffb300; /* Bull Golden Gold */
    --primary-glow: rgba(255, 179, 0, 0.4);
    --primary-grad: linear-gradient(135deg, #ffb300 0%, #ff6f00 100%);
    
    --accent: #ff6f00;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #1f2937;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --neon-shadow: 0 0 20px rgba(255, 111, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #272730;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.glass-panel:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 8px 32px 0 rgba(255, 111, 0, 0.1), var(--shadow);
    transform: translateY(-4px);
}

/* Navigation bar */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 7, 10, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.logo span {
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-grad);
    color: var(--bg-dark);
    font-weight: 700;
    font-family: var(--font-heading);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.5), var(--neon-shadow);
    transform: scale(1.02);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-weight: 600;
    font-family: var(--font-heading);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: scale(1.02);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.15) 0%, rgba(7, 7, 10, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-content h1 span {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 0;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--neon-shadow);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background: rgba(255, 179, 0, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 179, 0, 0.2);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 40px;
    text-align: left;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 179, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 24px;
    border: 1px solid rgba(255, 179, 0, 0.2);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.pricing-card {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(255, 179, 0, 0.08) 0%, rgba(18, 18, 24, 0.8) 100%);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-grad);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 50px;
}

.price-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.price-amount .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.price-amount .amount {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
}

.price-amount .period {
    color: var(--text-muted);
    margin-left: 8px;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
}

.price-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

.pricing-card .cta-button {
    width: 100%;
}

/* Tutorials & Downloads */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.download-card {
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-main);
}

.download-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.download-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
}

.download-card p {
    color: var(--text-muted);
    font-size: 13px;
}

/* Articles Section */
.articles-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 4px 24px 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.05);
}

.articles-grid::-webkit-scrollbar {
    height: 6px;
}
.articles-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}
.articles-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 179, 0, 0.3);
    border-radius: 10px;
}
.articles-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.article-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
    padding: 0;
}

.article-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}
.article-card:hover .article-card-img {
    transform: scale(1.03);
}

.article-card-content {
    padding: 24px 24px 12px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-date {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.article-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-card h3 a {
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}
.article-card h3 a:hover {
    color: var(--primary);
}

.article-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 0;
    flex-grow: 1;
    line-height: 1.6;
}

.article-card .read-more {
    padding: 0 24px 24px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
}

.read-more::after {
    content: "→";
    transition: transform 0.2s;
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* User Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.review-card {
    padding: 40px;
}

.review-rating {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 18px;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    font-size: 15px;
    margin-bottom: 24px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffb300;
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.user-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
}

.user-info p {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 0;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 16px 0;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-muted);
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 8px;
}

.faq-toggle {
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary);
}

/* Footer & PBN backlink area */
footer {
    background-color: #040406;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 40px 0;
    font-family: var(--font-body);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-links-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

/* PBN Friend Link Section - Small, Elegant, Low Profile */
.pbn-links-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
    font-size: 12px;
}

.pbn-links-area span {
    color: rgba(255, 255, 255, 0.2);
}

.pbn-link {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: var(--transition);
}

.pbn-link:hover {
    color: rgba(255, 179, 0, 0.7);
    text-decoration: underline;
}

/* Mouse trailing canvas */
#trail-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

/* Article Page Layout Details */
.article-page {
    padding: 160px 0 100px 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow);
}

.article-content h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.article-meta span strong {
    color: var(--primary);
}

.article-body {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.8;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}

.article-body ul, .article-body ol {
    margin-left: 20px;
    margin-bottom: 24px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body strong {
    color: var(--primary);
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 32px;
    font-weight: 600;
    transition: var(--transition);
}

.back-home:hover {
    color: var(--primary);
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple hidden for mobile, keep layout clean */
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .article-content {
        padding: 24px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}
