@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #0f0f13;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Навигация */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgba(15, 15, 19, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    box-sizing: border-box;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 50, 50, 0.2);
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #ff4c4c;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 76, 76, 0.5);
}

.nav-links a {
    color: #c5c6c7;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.nav-links a:hover { color: #ff4c4c; }

/* Главный экран */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a24 0%, #0f0f13 100%);
    padding: 100px 20px 50px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin: 0;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.hero .version {
    font-size: 1.5rem;
    color: #ff4c4c;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Статистика онлайна */
.server-stats {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 40px;
    border-radius: 30px;
    margin: 30px 0;
    font-size: 1.2rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
}

.online-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #4CAF50;
    animation: pulse 2s infinite;
}

/* Кнопка копирования IP */
.ip-block {
    margin-top: 20px;
}

.copy-btn {
    background: #ff4c4c;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255, 76, 76, 0.4);
}

.copy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 76, 76, 0.7);
    background: #ff6666;
}

/* Секция Привилегий */
.store {
    padding: 80px 10%;
    text-align: center;
    background-color: #0b0b0e;
}

.store h2 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 50px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.ranks-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.rank-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    width: 300px;
    transition: 0.3s;
}

.rank-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.rank-card h3 {
    font-size: 2rem;
    color: #ffd700;
    margin: 0 0 15px 0;
}

.rank-price {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.rank-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    color: #aaa;
}

.rank-features li { margin-bottom: 10px; }
.rank-features li::before { content: '✓ '; color: #4CAF50; }

.buy-btn {
    display: block;
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 10px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #ffd700;
    color: #000;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}
