/* ============================================
  Intelshare - Main Stylesheet
   Cyber Threat Intelligence Blog
   ============================================ */

/* CSS Variables */
:root {
    --primary-orange: #ff6600;
    --secondary-orange: #ff8533;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --accent-line: #ff6600;
    --pixel-font: 'Press Start 2P', cursive;
    --body-font: 'VT323', monospace;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--darker-bg);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Content Overlay for readability */
.content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.85) 0%,
        rgba(26, 26, 26, 0.75) 50%,
        rgba(13, 13, 13, 0.9) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Main Wrapper */
.main-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 3px solid var(--primary-orange);
    background: rgba(13, 13, 13, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo a {
    font-family: var(--pixel-font);
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: 2px;
}

.pixel-dot {
    color: var(--primary-orange);
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--pixel-font);
    font-size: 0.75rem;
    color: var(--text-white);
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-orange);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 40px;
    position: relative;
    min-height: calc(100vh - 200px);
}

.hero-content {
    max-width: 800px;
}

.hero-tag {
    font-family: var(--pixel-font);
    font-size: 0.7rem;
    color: var(--primary-orange);
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.hero-title {
    margin-bottom: 30px;
}

.title-line-1 {
    display: block;
    font-family: var(--pixel-font);
    font-size: 3rem;
    color: var(--text-white);
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 4px 4px 0 rgba(255, 102, 0, 0.3);
}

.title-line-2 {
    display: block;
    font-family: var(--pixel-font);
    font-size: 3rem;
    color: var(--primary-orange);
    letter-spacing: 4px;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-family: var(--body-font);
    font-size: 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-orange);
    color: var(--darker-bg);
    font-family: var(--pixel-font);
    font-size: 0.9rem;
    padding: 20px 40px;
    min-width: 300px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* Pixel Decorations */
.pixel-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.pixel-block {
    position: absolute;
    background: var(--primary-orange);
    opacity: 0.3;
    animation: pixelFloat 4s ease-in-out infinite;
}

.block-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.block-2 {
    width: 15px;
    height: 15px;
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.block-3 {
    width: 25px;
    height: 25px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.block-4 {
    width: 10px;
    height: 10px;
    top: 30%;
    right: 40%;
    animation-delay: 3s;
}

@keyframes pixelFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(45deg);
        opacity: 0.6;
    }
}

/* ============================================
   Featured Section
   ============================================ */
.featured-section {
    margin-top: 85px;
    padding-bottom: 30px 30px;
    background: rgba(13, 13, 13, 0.8);
}

.section-title {
    font-family: var(--pixel-font);
    font-size: 1rem;
    color: var(--primary-orange);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.featured-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 102, 0, 0.3);
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-orange);
    transition: height 0.3s ease;
}

.featured-card:hover::before {
    height: 100%;
}

.featured-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.card-tag {
    font-family: var(--pixel-font);
    font-size: 0.6rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.card-title {
    font-family: var(--pixel-font);
    font-size: 0.85rem;
    color: var(--text-white);
    margin-bottom: 15px;
    line-height: 1.5;
}

.card-excerpt {
    font-family: var(--body-font);
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-link {
    font-family: var(--pixel-font);
    font-size: 0.65rem;
    color: var(--primary-orange);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--secondary-orange);
    letter-spacing: 3px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 40px;
    background: rgba(13, 13, 13, 0.95);
    border-top: 3px solid var(--primary-orange);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: var(--pixel-font);
    font-size: 1rem;
    color: var(--text-white);
}

.footer-text {
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-gray);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

/* ============================================
   Page Specific Styles
   ============================================ */

/* Page Header */
.page-header {
    padding: 60px 40px;
    border-bottom: 1px solid rgba(255, 102, 0, 0.3);
}

.page-title {
    font-family: var(--pixel-font);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 15px;
    text-shadow: 3px 3px 0 rgba(255, 102, 0, 0.3);
}

.page-subtitle {
    font-family: var(--body-font);
    font-size: 1.3rem;
    color: var(--text-gray);
}

/* Content Section */
.content-section {
    padding: 40px;
    flex: 1;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 102, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.article-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--primary-orange);
}

.article-image-placeholder {
    font-family: var(--pixel-font);
    font-size: 3rem;
    color: var(--primary-orange);
    opacity: 0.5;
}

.article-content {
    padding: 25px;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.article-date,
.article-category {
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-gray);
}

.article-category {
    color: var(--primary-orange);
}

.article-title {
    font-family: var(--pixel-font);
    font-size: 0.8rem;
    color: var(--text-white);
    margin-bottom: 15px;
    line-height: 1.6;
}

.article-excerpt {
    font-family: var(--body-font);
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 20px;
}

.article-link {
    font-family: var(--pixel-font);
    font-size: 0.6rem;
    color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.article-link:hover {
    gap: 15px;
    color: var(--secondary-orange);
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px;
}

.about-text {
    font-family: var(--body-font);
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.about-text h3 {
    font-family: var(--pixel-font);
    font-size: 0.9rem;
    color: var(--primary-orange);
    margin: 30px 0 15px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.about-avatar {
    font-family: var(--pixel-font);
    font-size: 8rem;
    color: var(--primary-orange);
    opacity: 0.5;
}

/* Skills Section */
.skills-section {
    padding: 40px;
    background: rgba(26, 26, 26, 0.5);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.skill-item {
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid rgba(255, 102, 0, 0.3);
    padding: 25px;
}

.skill-name {
    font-family: var(--pixel-font);
    font-size: 0.7rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.skill-bar {
    height: 8px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--primary-orange);
    transition: width 1s ease;
}

/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.blog-post-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 102, 0, 0.3);
}

.blog-post-title {
    font-family: var(--pixel-font);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.5;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--text-gray);
}

.blog-post-content {
    font-family: var(--body-font);
    font-size: 1.4rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.blog-post-content h2 {
    font-family: var(--pixel-font);
    font-size: 1rem;
    color: var(--primary-orange);
    margin: 40px 0 20px;
}

.blog-post-content h3 {
    font-family: var(--pixel-font);
    font-size: 0.85rem;
    color: var(--text-white);
    margin: 30px 0 15px;
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-content code {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-orange);
    padding: 2px 8px;
    font-family: 'Courier New', monospace;
}

.blog-post-content pre {
    background: rgba(13, 13, 13, 0.9);
    border: 1px solid rgba(255, 102, 0, 0.3);
    padding: 20px;
    overflow-x: auto;
    margin: 20px 0;
}

.blog-post-content pre code {
    background: none;
    padding: 0;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-post-content li {
    margin-bottom: 10px;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--primary-orange);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: var(--text-white);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .title-line-1,
    .title-line-2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 3px solid var(--primary-orange);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 102, 0, 0.2);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .title-line-1,
    .title-line-2 {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .cta-button {
        min-width: 100%;
        padding: 15px 25px;
        font-size: 0.75rem;
    }
    
    .featured-section,
    .content-section {
        padding: 30px 20px;
    }
    
    .page-header {
        padding: 40px 20px;
    }
    
    .page-title {
        font-size: 1.3rem;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 1rem;
    }
    
    .title-line-1,
    .title-line-2 {
        font-size: 1.2rem;
    }
    
    .hero-tag {
        font-size: 0.6rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-orange {
    color: var(--primary-orange);
}

.text-white {
    color: var(--text-white);
}

.text-gray {
    color: var(--text-gray);
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.hidden {
    display: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-orange);
}

/* Selection Styling */
::selection {
    background: var(--primary-orange);
    color: var(--darker-bg);
}

//* afkjakf..*//
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.query-block {
    overflow-x: auto;
    word-break: break-all;
}

@media (max-width: 768px) {
    .report-container {
        padding: 20px;
    }

    p, li {
        font-size: 1rem;
    }
}








