/* ========================================
   VARIABLES & RESET
   ======================================== */
:root {
    --primary-dark: #263355;
    --primary-darker: #1a2339;
    --primary-lighter: #3d4d6f;
    --accent-green: #00FE66;
    --accent-green-hover: #00ff70;
    --text-white: #FFFFFF;
    --text-gray: #B8C5D6;
    --text-muted: #7A8BA3;
    --card-bg: #2A3654;
    --card-border: #3d4d6f;
    --glow-green: rgba(0, 254, 102, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
.content-type-badge.facebook {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877F2;
    color: #1877F2;
}
/* ========================================
   GLOBAL & ANIMATED BACKGROUND
   ======================================== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, #0a1628 0%, #06101f 50%, #0a1628 100%);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100vh;
}

/* Grid pattern with large squares */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(20, 37, 66, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 37, 66, 0.3) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: 0;
    pointer-events: none;
}

/* Left side glow effect with squares */
body::after {
    content: '';
    position: fixed;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 800px;
    background: 
        linear-gradient(135deg, rgba(41, 98, 255, 0.15) 0%, transparent 70%),
        linear-gradient(135deg, rgba(0, 200, 255, 0.1) 20%, transparent 80%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

/* Right side glow effect */
.background-glow-right {
    position: fixed;
    right: -200px;
    top: 30%;
    width: 600px;
    height: 800px;
    background: 
        linear-gradient(-135deg, rgba(139, 92, 246, 0.12) 0%, transparent 70%),
        linear-gradient(-135deg, rgba(236, 72, 153, 0.08) 20%, transparent 80%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}


@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.header-section {
    text-align: center;
    padding: 4rem 0 3rem 0;
}

.header-section h1 {
    font-size: 2.5rem;
    color: #00FE66;
    margin-bottom: 1rem;
}

.header-section p {
    font-size: 1.1rem;
    color: #B8C5D6;
    max-width: 600px;
    margin: 0 auto;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(26, 35, 57, 0.8);
    border: 2px solid transparent;
    border-radius: 25px;
    color: #B8C5D6;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(0, 254, 102, 0.1);
    border-color: #00FE66;
    color: #00FE66;
}

/* Masonry Grid */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.fact-card {
    background: black;
    border-radius: 20px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-color) !important;
}

.fact-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-color);
    box-shadow: 0 10px 30px rgba(0, 254, 102, 0.15);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.score-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(var(--card-color) var(--score-percent), rgba(255,255,255,.1) 0) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.score-inner {
    width: 50px;
    height: 50px;
    background: #1A2339;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.verdict-tag {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.card-title {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: #E8EEF4;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-summary {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #B8C5D6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #95A5A6;
}

.meta-info {
    display: flex;
    gap: 1rem;
}

.meta-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.view-link {
    color: #00FE66;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s;
}

.view-link:hover {
    gap: 0.5rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 4rem;
    color: #00FE66;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #B8C5D6;
}

.load-more {
    text-align: center;
    margin: 3rem 0 2rem;
}

.btn-load-more {
    padding: 1rem 2.5rem;
    background: rgba(0, 254, 102, 0.1);
    border: 2px solid #00FE66;
    color: #00FE66;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-load-more:hover {
    background: #00FE66;
    color: #0f1520;
    transform: translateY(-2px);
}

.btn-load-more:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.loading-spinner {
    color: #00FE66;
    font-size: 1rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .header-section h1 {
        font-size: 2rem;
    }
    
    .filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}
.content-type-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    border: 1.5px solid;
}

.content-type-badge.instagram {
    background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5
);

    border-color: white;
    color: white;
}

.content-type-badge.article {
    background: rgba(0, 254, 102, 0.1);
    border-color: #00FE66;
    color: #00FE66;
}

.content-type-badge i {
    font-size: 0.85rem;
}
.content-type-badge.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}