/* Кибертехнологический дизайн для VPN RogFam */

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: radial-gradient(circle at top, #0a0a0f, #000);
    color: #e0e0e0;
	    /* Фон с картинкой */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('main image.jpg') center/cover no-repeat;
}

header {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #00111f, #00334d);
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.3);
}

h1 {
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 0 0 15px #00aaff;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.8;
}

.card {
    background: rgba(15, 30, 45, 0.8);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 200, 255, 0.2);
    box-shadow: 0 0 25px rgba(0, 200, 255, 0.1);
}

.card h2 {
    color: #5cd3ff;
    text-shadow: 0 0 10px #0099cc;
}

ul li::before {
    content: '▸ ';
    color: #00c8ff;
}

a.button {
    display: inline-block;
    padding: 12px 22px;
    background: #0066cc;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

a.button:hover {
    background: #0099ff;
    box-shadow: 0 0 15px #0099ff;
}

/* Большой заголовок перед новостями */
.news-main-title {
    font-size: 3rem;
    text-align: center;
    color: #00f0ff;
    text-shadow: 
        0 0 10px #00f0ff,
        0 0 20px #00c8ff,
        0 0 30px #0099cc,
        0 0 40px #0066cc;
    margin-bottom: 35px;
    font-weight: bold;
}

/* Новостной блок */
.news-block {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

.news-block h1 {
    color: #00c8ff;
    text-align: center;
    text-shadow: 0 0 15px #00aaff;
    margin-bottom: 25px;
}

.news-item {
    background: rgba(15, 30, 45, 0.85);
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #00c8ff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 200, 255, 0.3);
}

.news-item h2 {
    color: #5cd3ff;
    text-shadow: 0 0 10px #0099cc;
    margin-top: 0;
}

.news-item p {
    line-height: 1.7;
}

.news-date {
    display: block;
    text-align: right;
    color: #00e5ff;
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.8;
}
