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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0d0d0d;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.main-nav {
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #fff;
}

.hero {
    padding: 100px 0 80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 20px;
    color: #999;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.hero-description p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.8;
}

.hero-description strong {
    color: #fff;
    font-weight: 500;
}

.section-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-align: center;
}

.featured-markets {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.market-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    transition: all 0.3s;
    position: relative;
}

.market-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
}

.market-status {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 2px;
}

.market-status.online {
    background: rgba(0,255,0,0.1);
    color: #0f0;
    border: 1px solid #0f0;
}

.market-status.offline {
    background: rgba(255,0,0,0.1);
    color: #f00;
    border: 1px solid #f00;
}

.market-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.market-card p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 25px;
}

.market-card strong {
    color: #fff;
    font-weight: 500;
}

.btn-minimal {
    display: inline-block;
    padding: 10px 30px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-minimal:hover {
    background: #fff;
    color: #0d0d0d;
}

.latest-news {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    transition: all 0.3s;
}

.news-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
}

.news-date {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.news-card p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.read-more:hover {
    opacity: 0.7;
}

.video-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.video-container {
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.video-description h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.video-description p {
    font-size: 15px;
    color: #999;
    line-height: 1.8;
}

.video-description strong {
    color: #fff;
    font-weight: 500;
}

.forum-preview {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.forum-threads {
    margin-bottom: 40px;
}

.thread-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px 30px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.thread-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
}

.thread-item h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.thread-item p {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.thread-meta {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
}

.main-footer {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.footer-keywords {
    font-size: 12px;
    color: #444;
}

.page-header-image {
    margin: 40px auto 0;
    max-width: 800px;
}

.page-header-image img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 20px;
        font-size: 12px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .markets-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* News Page Header Styling */
.page-header {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: headerGlow 3s ease-in-out infinite alternate;
}

@keyframes headerGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.page-header h1 {
    font-size: 48px;
    font-weight: 900;
    color: #ff6b35;
    text-shadow: 
        0 0 10px rgba(255, 107, 53, 0.8),
        0 0 20px rgba(255, 107, 53, 0.6),
        0 0 30px rgba(255, 107, 53, 0.4);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 20px;
    }
    
    .page-header h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .page-header p {
        font-size: 16px;
        padding: 0 10px;
    }
}

/* New Security Card Statuses */
.market-status.encryption {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.4);
}

.market-status.advocacy {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.4);
}

.market-status.framework {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.4);
}

.market-status.research {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.4);
}

/* Essential Security Tools Section */
.essential-security-tools {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%);
    padding: 80px 0;
    margin: 60px 0;
    border-top: 3px solid #ff6b35;
    border-bottom: 3px solid #ff6b35;
    position: relative;
}

.essential-security-tools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: securityGlow 4s ease-in-out infinite alternate;
}

@keyframes securityGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.essential-security-tools .section-title {
    color: #ff6b35;
    text-shadow: 
        0 0 10px rgba(255, 107, 53, 0.8),
        0 0 20px rgba(255, 107, 53, 0.6);
}

.essential-security-tools .section-subtitle {
    color: #ecf0f1;
    text-shadow: 0 0 5px rgba(236, 240, 241, 0.5);
}

/* Articles Page Styles */
.articles-page {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%);
    min-height: 80vh;
}

.articles-grid {
    display: grid;
    gap: 60px;
    margin-top: 40px;
}

.articles-section {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.articles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: sectionGlow 4s ease-in-out infinite alternate;
}

@keyframes sectionGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.articles-section .section-title {
    color: #ff6b35;
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 
        0 0 10px rgba(255, 107, 53, 0.8),
        0 0 20px rgba(255, 107, 53, 0.6);
    position: relative;
    z-index: 2;
}

.articles-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.article-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.article-card:hover::before {
    opacity: 1;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.article-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.article-status.security {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.4);
}

.article-status.privacy {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.4);
}

.article-status.crypto {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.4);
}

.article-status.messaging {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.4);
}

.article-status.systems {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    box-shadow: 0 0 10px rgba(155, 89, 182, 0.4);
}

.article-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-card h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-card h3 a:hover {
    color: #ff6b35;
    text-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
}

.article-card p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #888888;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.article-meta .date {
    color: #ff6b35;
    font-weight: 600;
}

.article-meta .category {
    color: #cccccc;
    font-style: italic;
}

@media (max-width: 768px) {
    .articles-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .articles-section {
        padding: 25px;
    }
    
    .articles-section .section-title {
        font-size: 24px;
    }
    
    .article-card {
        padding: 20px;
    }
}
