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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0a1f 0%, #1a1a3e 50%, #0a0a1f 100%);
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.03) 2px,
            rgba(255,255,255,0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.main-nav {
    background: rgba(10,10,31,0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100,100,255,0.2);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
}

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

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

.nav-menu a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(100,100,255,0.5);
}

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

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

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

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

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 20px;
    color: #a0a0ff;
    font-weight: 300;
}

.breaking-news {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

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

.news-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100,100,255,0.2);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100,100,255,0.3);
    border-color: rgba(100,100,255,0.5);
}

.news-card.alert {
    border-left: 4px solid #ff4444;
}

.news-card.warning {
    border-left: 4px solid #ffaa00;
}

.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4444;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.news-card.warning .news-badge {
    background: #ffaa00;
}

.news-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.news-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    padding-right: 100px;
}

.news-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.news-card p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-card strong {
    color: #a0a0ff;
    font-weight: 600;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.read-more:hover {
    color: #764ba2;
}

.alerts-section {
    padding: 80px 0;
}

.alert-box {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-box.danger {
    border-left-color: #ff4444;
}

.alert-box.warning {
    border-left-color: #ffaa00;
}

.alert-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.alert-box p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.7;
}

.alert-box strong {
    color: #a0a0ff;
    font-weight: 600;
}

.main-footer {
    background: rgba(10,10,31,0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(100,100,255,0.2);
    padding: 40px 0;
    margin-top: 80px;
    text-align: center;
}

.main-footer p {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

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

.article-image {
    margin: 30px 0;
    text-align: center;
}

.article-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(100,100,255,0.3);
}

/* Content Section Styles */
.content-section {
    padding: 80px 0;
    background: rgba(0,0,0,0.3);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.content-block {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
}

.content-block h3 {
    color: #667eea;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    padding-bottom: 10px;
}

.content-block p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.content-block strong {
    color: #a0a0ff;
    font-weight: 600;
}

.content-block-full {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.content-block-full h3 {
    color: #667eea;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    padding-bottom: 15px;
    text-align: center;
}

.content-block-full p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: justify;
}

.content-block-full strong {
    color: #a0a0ff;
    font-weight: 600;
}

.disclaimer-section {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.disclaimer-section h3 {
    color: #ff6b6b;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.disclaimer-section p {
    color: #bbb;
    line-height: 1.7;
    font-size: 14px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 20px;
    }
}
