/* Internal Pages CSS */
.page-header {
    padding: 160px 24px 60px;
    background: linear-gradient(180deg, rgba(10,14,18,1) 0%, rgba(22,33,41,0.8) 100%);
    text-align: center;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

.page-header h1 {
    font-size: 48px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.page-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 16px auto 0;
    position: relative;
    z-index: 1;
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 16px;
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius);
    border: 1px solid var(--neon-green);
    box-shadow: var(--neon-glow);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(80%) sepia(20%) hue-rotate(60deg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.1);
}

.blog-img {
    height: 200px;
    background: #1a2228;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-img::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--neon-green);
    color: #000;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    z-index: 1;
}

.blog-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.4;
}

/* For blog inner pages - header banner */
.blog-post-banner {
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #111;
}
.blog-post-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.blog-post-banner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    flex: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    color: var(--text-muted);
    font-size: 13px;
}

.read-more {
    color: var(--neon-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.read-more:hover {
    text-shadow: var(--neon-glow);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.faq-item {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover, .faq-question.active {
    color: var(--neon-green);
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 20px;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Single Article Page */
.article-header {
    padding: 160px 24px 60px;
    background: #0f151b;
    text-align: center;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.article-meta {
    color: var(--neon-green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-header h1 {
    font-size: 40px;
    max-width: 900px;
    margin: 0 auto 24px;
    line-height: 1.3;
}

.article-cover {
    width: 100%;
    max-width: 900px;
    height: 400px;
    margin: 0 auto 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    max-width: 800px;
    margin: 0 auto 80px;
    font-size: 17px;
    line-height: 1.8;
    color: #e2e8f0;
}

.article-content h2, .article-content h3 {
    color: #fff;
    margin-top: 40px;
    margin-bottom: 16px;
}

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

.article-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 12px;
}

.article-content strong {
    color: var(--neon-green);
}
