* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.logo span {
    color: #14F7FF;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
        text-shadow: 0 0 2px #14F7FF;
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 12px #14F7FF;
    }
    100% {
        opacity: 0.6;
        text-shadow: 0 0 2px #14F7FF;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Цвета и кнопки --- */
a {
    color: #14F7FF;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #ffffff;
}

.btn, button[type="submit"] {
    display: inline-block;
    background: #14F7FF;
    color: #000000;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.btn:hover, button[type="submit"]:hover {
    background: #0ab3b8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(20, 247, 255, 0.2);
}

/* --- Шапка --- */
header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(20, 247, 255, 0.2);
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    margin-left: 35px;
    font-weight: 500;
    color: #f0f0f0;
    font-size: 16px;
}

.nav-links a:hover, .nav-links a.active {
    color: #14F7FF;
}

/* --- Герой --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #0a1a1a 100%), url('https://images.unsplash.com/photo-1462331940025-496dfbfc7564?auto=format&fit=crop&w=2000&q=80');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 62px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.hero h1 span {
    color: #14F7FF;
}

.hero p {
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 35px;
    color: #dddddd;
}

/* --- Секции --- */
section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(20, 247, 255, 0.1);
}

h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

h2 span {
    color: #14F7FF;
}

/* --- Карточки общие --- */
.cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #111111;
    padding: 40px 30px;
    border-radius: 24px;
    flex: 1;
    min-width: 250px;
    transition: 0.3s;
    border: 1px solid rgba(20, 247, 255, 0.2);
}

.card:hover {
    border-color: #14F7FF;
    transform: translateY(-8px);
    background: #1a1a1a;
}

.card h3 {
    color: #14F7FF;
    margin-bottom: 15px;
    font-size: 24px;
}

/* --- Лента новостей (whats-new) --- */
.news-feed {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.news-card {
    background: #111111;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(20, 247, 255, 0.15);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: #14F7FF;
    box-shadow: 0 20px 30px -15px rgba(20, 247, 255, 0.1);
}

.news-content {
    padding: 30px;
}

.news-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.news-card h3 a {
    color: white;
}

.news-card h3 a:hover {
    color: #14F7FF;
}

.news-meta {
    color: #14F7FF;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.news-card img {
    width: 100%;
    border-radius: 20px;
    margin: 20px 0;
    max-height: 400px;
    object-fit: cover;
}

.read-more {
    font-weight: 600;
    color: #14F7FF;
    margin-left: 5px;
}

/* --- Лента результатов (our-results) --- */
.results-feed {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.result-card {
    background: #111111;
    border-radius: 28px;
    padding: 30px;
    border: 1px solid rgba(20, 247, 255, 0.15);
    transition: 0.3s;
}

.result-card:hover {
    border-color: #14F7FF;
}

.result-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #ffffff;
}

.result-meta {
    color: #14F7FF;
    margin-bottom: 20px;
    font-weight: 500;
}

.result-card video {
    border-radius: 20px;
    margin: 20px 0;
    width: 100%;
}

.result-desc {
    font-size: 18px;
    line-height: 1.5;
    color: #cccccc;
}

/* --- Страница отдельной новости --- */
.post-meta {
    color: #14F7FF;
    margin: 15px 0 30px;
    font-size: 16px;
}

.full-width-img {
    width: 100%;
    border-radius: 28px;
    margin: 30px 0;
}

.post-content {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
}

.post-content p {
    margin-bottom: 25px;
}

.back-btn {
    background: transparent;
    border: 1px solid #14F7FF;
    color: #14F7FF;
}

.back-btn:hover {
    background: #14F7FF;
    color: black;
}

/* --- Форма --- */
form {
    max-width: 600px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    background: #1a1a1a;
    border: 1px solid rgba(20, 247, 255, 0.4);
    border-radius: 16px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    transition: 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #14F7FF;
    box-shadow: 0 0 0 3px rgba(20, 247, 255, 0.1);
}

/* --- Подвал --- */
footer {
    padding: 50px 0;
    text-align: center;
    color: #666;
    border-top: 1px solid rgba(20, 247, 255, 0.1);
}

/* --- Адаптация под телефон --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    .nav-links a { margin-left: 18px; font-size: 13px; }
    .header-flex { flex-direction: column; gap: 15px; }
    .news-card h3 { font-size: 22px; }
    .result-card h3 { font-size: 22px; }
    .card { padding: 25px; }
}