
/* ===== Общие стили ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* ===== Навигация ===== */
.navbar {
    background: #222;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.navbar .logo img {
    height: 50px; /* увеличенный логотип */
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.navbar .logo img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.3s;
}

.navbar .nav-links li a:hover {
    background: #ffcc00;
    color: #222;
}

/* ===== Hero блок ===== */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff, #e9ecef);
    border-radius: 15px;
    margin: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: fadeIn 1.2s ease-in-out;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
}

/* ===== Новости ===== */
.news {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.news article {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news article:hover {
    transform: translateY(-5px);
}

/* ===== Профиль, админка, Discord, боты, приватность, логин ===== */
.profile, .admin, .discord, .bot, .terms, .verify, .verify_success, .privacy, .login-section {
    background: #fff;
    padding: 40px 30px;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: fadeIn 0.8s ease-in-out;
}

/* ===== Кнопки ===== */
.btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* ===== Footer ===== */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

/* ===== Анимации ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Адаптивность ===== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h1 {
        font-size: 2rem;
    }
}

/* ===== Telegram кнопка ===== */
.btn-telegram {
    display: inline-block;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: #0088cc; /* фирменный цвет Telegram */
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-telegram:hover {
    background: #006b9b;
    transform: scale(1.05);
}

/* ===== Discord ===== */
.discord-section {
    text-align: center;
    padding: 20px;
}

.discord-card {
    display: inline-block;
    background: #2f3136;
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.discord-card .server-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.discord-card h3 {
    font-size: 20px;
    margin: 10px 0;
}

.discord-card p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #ccc;
}

.members-list {
    max-height: 200px;
    overflow-y: auto;
    text-align: left;
    margin-bottom: 15px;
}

.member {
    display: flex;
    align-items: center;
    margin: 4px 0;
}

.member img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
}

.discord-link {
    display: inline-block;
    background: #5865F2;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.discord-link:hover {
    background: #4752c4;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #007bff;
    object-fit: cover;
}

.profile-info p {
    margin: 6px 0;
    font-size: 16px;
}