body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #0f2027, #2c5364);
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}
.overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4vw;
    background: rgba(15,32,39,0.7);
    position: relative;
    z-index: 2;
}
.logo {
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffcc00;
}
.logo span {
    color: #00e6e6;
    font-weight: 400;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
nav a:hover {
    color: #ffcc00;
}
.landing {
    text-align: center;
    margin-top: 8vh;
    z-index: 2;
    position: relative;
}
.landing h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #000;
}
.landing h2 {
    font-size: 2rem;
    color: #00e6e6;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 8px #000;
}
.teaser {
    margin-top: 6vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-flash {
    background: rgba(255,204,0,0.15);
    border-radius: 20px;
    padding: 1.2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    box-shadow: 0 2px 12px #0002;
    color: #fff;
    animation: flash 1.5s infinite alternate;
}
.flash-icon {
    font-size: 2rem;
    color: #ffcc00;
    animation: pulse 1.2s infinite alternate;
}
@keyframes flash {
    0% { box-shadow: 0 2px 12px #0002; }
    100% { box-shadow: 0 4px 24px #ffcc0033; }
}
@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}
footer {
    text-align: center;
    padding: 2rem 0 1rem 0;
    font-size: 1rem;
    color: #fff;
    background: rgba(15,32,39,0.7);
    position: relative;
    z-index: 2;
    margin-top: 8vh;
}
@media (max-width: 700px) {
    .landing h1 { font-size: 2.2rem; }
    .landing h2 { font-size: 1.2rem; }
    .news-flash { font-size: 1rem; padding: 0.7rem 1.2rem; }
    header { flex-direction: column; gap: 1rem; }
}

.articles {
    max-width: 1200px;
    margin: 6vh auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 2rem;
}
.article-card {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    box-shadow: 0 2px 10px #0003;
    overflow: hidden;
    flex: 1 1 calc(33% - 2rem);
    min-width: 260px;
}
.article-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.article-card h3 {
    margin: 0.8rem;
    font-size: 1.3rem;
    color: #ffcc00;
}
.article-card p {
    margin: 0 0.8rem 0.8rem 0.8rem;
    font-size: 0.9rem;
}
.article-card a {
    display: block;
    color: #00e6e6;
    font-weight: bold;
    margin: 0 0.8rem 1rem 0.8rem;
    text-decoration: none;
}

.article-content {
    max-width: 800px;
    margin: 6vh auto;
    padding: 0 2rem;
    line-height: 1.6;
}
.article-content img {
    width: 100%;
    border-radius: 8px;
    margin: 1.2rem 0;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 2rem 0;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 700px) {
    .article-card { flex: 1 1 100%; }
}
