* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(145deg, #f0f9ff 0%, #e6f2fa 100%);
    color: #033b5e;
    line-height: 1.5;
    min-height: 100vh;
}

/* Облака фон */
.cloud-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 40%, rgba(255,255,255,0.4) 0%, transparent 70%);
}

/* Навигация */
.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 60px;
    padding: 0.7rem 2rem;
    margin: 1.5rem 2rem;
    box-shadow: 0 8px 20px rgba(0, 30, 60, 0.08);
    border: 1px solid rgba(44, 124, 182, 0.2);
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.7rem;
}

.logo i {
    font-size: 2rem;
    color: #1e88e5;
}

.logo span {
    background: linear-gradient(135deg, #0b5e7e, #1e88e5);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo-badge {
    font-size: 0.7rem;
    background: #1e88e5;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 5px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #0a4b6e;
    transition: 0.25s;
}

.nav-links a:hover, .nav-links a.active {
    color: #1e88e5;
}

.btn-ip {
    background: linear-gradient(100deg, #0f6b97, #1a8cce);
    color: white !important;
    padding: 8px 20px;
    border-radius: 40px;
    box-shadow: 0 5px 12px rgba(26,140,206,0.3);
}

.burger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0a4b6e;
}

.main-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 2rem 3rem;
}

/* Hero секция */
.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    gap: 2rem;
}

.hero-text {
    flex: 1.2;
}

.hero-badge {
    background: rgba(30,136,229,0.12);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a6f9e;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    background: linear-gradient(125deg, #035277, #1f7fb3);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-text p {
    font-size: 1.1rem;
    color: #2c607c;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    background: white;
    padding: 0.5rem 1.2rem;
    border-radius: 80px;
    font-weight: 700;
    color: #0f5982;
    border: 1px solid #cde5f2;
}

.stat i {
    margin-right: 8px;
    color: #1e88e5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #1a73b9;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 8px 16px rgba(26,115,185,0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary:hover {
    background: #0f5c99;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #2c7cb6;
    color: #1a6f9e;
    padding: 10px 26px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    cursor: pointer;
}

.btn-outline:hover {
    background: #e1f0fa;
    transform: translateY(-2px);
}

.hero-image {
    flex: 0.9;
    text-align: center;
}

.hero-image i {
    font-size: 10rem;
    color: #308bcb;
}

.hero-rating {
    margin-top: 1rem;
    background: rgba(30,136,229,0.1);
    padding: 0.5rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Онлайн статус */
.online-status {
    background: #ffffffcc;
    backdrop-filter: blur(4px);
    border-radius: 36px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid #b9d8f0;
}

.online-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0088cc;
}

.green-dot {
    width: 16px;
    height: 16px;
    background: #2dcb6e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; transform: scale(1);}
    100% { opacity: 1; transform: scale(1.1);}
}

/* PVE Features Grid */
.features-pve {
    margin: 4rem 0;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #055a84;
}

.pve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pve-card {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #d4e8f5;
}

.pve-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pve-card i {
    font-size: 3rem;
    color: #1e88e5;
    margin-bottom: 1rem;
}

.pve-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #033b5e;
}

.card-progress {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eef3f8;
    font-size: 0.85rem;
    color: #1e88e5;
    font-weight: 600;
}

/* Updates Section */
.updates-section {
    margin: 3rem 0;
}

.updates-list {
    background: white;
    border-radius: 28px;
    padding: 1.5rem;
}

.update-item {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eef3f8;
}

.update-item:last-child {
    border-bottom: none;
}

.update-date {
    min-width: 120px;
    font-weight: 700;
    color: #1e88e5;
}

.update-content {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.update-content i {
    font-size: 1.5rem;
    color: #2c7cb6;
}

.update-content h4 {
    margin-bottom: 0.3rem;
    color: #033b5e;
}

/* Reviews Section */
.reviews-section {
    margin: 3rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    border-radius: 28px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    border: 1px solid #d4e8f5;
}

.review-avatar i {
    font-size: 3rem;
    color: #1e88e5;
}

.review-text p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.review-author {
    font-weight: 700;
    color: #033b5e;
    margin-bottom: 0.3rem;
}

.review-rating {
    color: #ffc107;
}

/* Join секция */
.join-section {
    background: linear-gradient(115deg, #ffffffd9, #eef7ff);
    border-radius: 48px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    text-align: center;
}

.join-section i {
    font-size: 2.5rem;
    color: #1e88e5;
    margin-bottom: 1rem;
}

.join-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.join-benefits span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c7cb6;
}

.join-benefits i {
    font-size: 1rem;
    margin-bottom: 0;
}

.ip-block {
    background: #093f5b;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px 10px 30px;
    border-radius: 60px;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.ip-text {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    background: #0e5175;
    padding: 5px 20px;
    border-radius: 50px;
    cursor: pointer;
}

.copy-btn {
    background: white;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    color: #055a84;
    transition: 0.2s;
}

.copy-btn:hover {
    background: #c2e2ff;
    transform: scale(0.98);
}

/* Страница квестов */
.quest-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #d4e8f5;
}

.stat-card i {
    font-size: 2rem;
    color: #1e88e5;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #033b5e;
}

.stat-label {
    color: #6b9cbb;
}

.quest-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    background: white;
    border: 1px solid #cde0ec;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 500;
}

.filter-btn.active, .filter-btn:hover {
    background: #1e88e5;
    color: white;
    border-color: #1e88e5;
}

.quest-line {
    background: white;
    border-radius: 32px;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid #d4e8f5;
}

.quest-line-header {
    background: linear-gradient(135deg, #e1f0fa, #ffffff);
    padding: 1.2rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 1px solid #d4e8f5;
}

.quest-line-header i {
    font-size: 1.5rem;
    color: #1e88e5;
}

.quest-line-header h2 {
    font-size: 1.3rem;
    color: #033b5e;
    display: inline;
    margin-left: 0.5rem;
}

.quest-line-reward {
    background: #1e88e5;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.quests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}

.quest-card {
    background: #f8fbfe;
    border-radius: 20px;
    padding: 1.2rem;
    transition: 0.3s;
}

.quest-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.quest-difficulty {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.quest-difficulty.easy {
    background: #4caf50;
    color: white;
}

.quest-difficulty.medium {
    background: #ff9800;
    color: white;
}

.quest-difficulty.hard {
    background: #f44336;
    color: white;
}

.quest-difficulty.expert {
    background: #9c27b0;
    color: white;
}

.quest-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #033b5e;
}

.quest-card p {
    color: #5a7c94;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.quest-rewards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
}

.quest-rewards span {
    background: #e1f0fa;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
}

.quest-progress {
    font-size: 0.8rem;
    color: #1e88e5;
    font-weight: 600;
}

.quest-info {
    background: #e1f0fa;
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    margin-top: 2rem;
}

/* Страница боссов */
.boss-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.boss-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #055a84;
}

.category-desc {
    color: #6b9cbb;
    margin-bottom: 1.5rem;
}

.bosses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.boss-card {
    background: white;
    border-radius: 28px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: 0.3s;
    border: 1px solid #d4e8f5;
}

.boss-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.boss-image i {
    font-size: 3.5rem;
    color: #1e88e5;
}

.boss-info {
    flex: 1;
}

.boss-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #033b5e;
}

.boss-difficulty {
    font-size: 0.8rem;
    color: #ff9800;
    margin-bottom: 0.5rem;
}

.boss-stats-mini {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    color: #6b9cbb;
}

.boss-desc {
    font-size: 0.85rem;
    color: #5a7c94;
    margin-bottom: 0.8rem;
}

.boss-loot, .boss-loot-mini {
    font-size: 0.8rem;
    color: #1e88e5;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.boss-location {
    font-size: 0.75rem;
    color: #6b9cbb;
}

.raid-schedule {
    background: white;
    border-radius: 28px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.raid-schedule h3 {
    margin-bottom: 1rem;
    color: #033b5e;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.schedule-item {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 16px;
    text-align: center;
}

.schedule-day {
    font-weight: 700;
    color: #1e88e5;
}

.schedule-boss {
    font-weight: 600;
    margin: 0.3rem 0;
}

.schedule-time {
    font-size: 0.8rem;
    color: #6b9cbb;
}

/* Страница доната */
.donate-badge {
    display: inline-block;
    background: #1e88e5;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin-top: 1rem;
}

.donate-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.donate-feature {
    background: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #d4e8f5;
}

.donate-feature i {
    color: #1e88e5;
}

.donate-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.donate-card {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: 0.3s;
    border: 1px solid #d4e8f5;
}

.donate-card.featured {
    transform: scale(1.02);
    border: 2px solid #1e88e5;
    box-shadow: 0 10px 30px rgba(30,136,229,0.2);
}

.donate-badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff9800;
    color: white;
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.donate-icon i {
    font-size: 3rem;
    color: #1e88e5;
    margin-bottom: 1rem;
}

.donate-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.donate-price {
    font-size: 2rem;
    font-weight: 800;
    color: #1e88e5;
    margin-bottom: 1rem;
}

.donate-perks {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.donate-perks li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.donate-perks li i {
    font-size: 0.9rem;
    margin: 0;
    color: #4caf50;
}

.donate-btn {
    background: linear-gradient(135deg, #1e88e5, #0f6b97);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: 0.2s;
}

.donate-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.cosmetics-section {
    margin-bottom: 3rem;
}

.cosmetics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.cosmetic-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #d4e8f5;
}

.cosmetic-card i {
    font-size: 2.5rem;
    color: #1e88e5;
    margin-bottom: 0.5rem;
}

.cosmetic-card h4 {
    margin-bottom: 0.5rem;
}

.cosmetic-price {
    margin-top: 0.5rem;
    color: #1e88e5;
    font-weight: 700;
}

.donate-faq {
    background: white;
    border-radius: 28px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.donate-faq h3 {
    margin-bottom: 1rem;
    color: #033b5e;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.sponsors {
    background: linear-gradient(135deg, #e1f0fa, #ffffff);
    border-radius: 28px;
    padding: 1.5rem;
    text-align: center;
}

.sponsors h3 {
    margin-bottom: 1rem;
    color: #033b5e;
}

.sponsors-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.sponsor {
    font-weight: 600;
    color: #1e88e5;
}

.sponsor i {
    margin-right: 0.3rem;
}

/* Правила */
.rules-container {
    max-width: 900px;
    margin: 0 auto;
}

.rules-category {
    background: white;
    border-radius: 28px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid #d4e8f5;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    color: #055a84;
}

.rules-list {
    list-style: none;
}

.rules-list li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #eef3f8;
}

.rules-list li i {
    width: 24px;
    color: #1e88e5;
}

.rules-list li i.fa-ban {
    color: #e74c3c;
}

.rules-agree {
    text-align: center;
    background: #e1f0fa;
    border-radius: 28px;
    padding: 2rem;
    margin: 2rem 0;
}

/* Вики */
.wiki-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.wiki-sidebar {
    flex: 0 0 260px;
    background: white;
    border-radius: 28px;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 20px;
    border: 1px solid #d4e8f5;
}

.sidebar-section {
    margin-bottom: 1.5rem;
}

.sidebar-section h3 {
    margin-bottom: 0.8rem;
    color: #055a84;
}

.sidebar-section ul {
    list-style: none;
}

.sidebar-section li {
    margin: 0.5rem 0;
}

.sidebar-section a {
    text-decoration: none;
    color: #2c7cb6;
    transition: 0.2s;
}

.sidebar-section a:hover {
    color: #1e88e5;
    padding-left: 5px;
}

.wiki-content {
    flex: 1;
}

.wiki-section {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #d4e8f5;
}

.wiki-section h2 {
    color: #055a84;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1e88e5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.tip-box {
    background: #e1f0fa;
    border-radius: 20px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tip-box i {
    font-size: 1.5rem;
    color: #1e88e5;
}

.commands-table {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.command-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    border-bottom: 1px solid #eef3f8;
    flex-wrap: wrap;
}

.command {
    font-family: monospace;
    font-weight: 600;
    color: #1e88e5;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.class-card {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
}

.class-card i {
    font-size: 2rem;
    color: #2c7cb6;
    margin-bottom: 0.5rem;
}

.class-stats {
    font-size: 0.7rem;
    margin-top: 0.5rem;
    color: #6b9cbb;
}

.class-note {
    font-size: 0.85rem;
    color: #6b9cbb;
    text-align: center;
}

.guide-list {
    list-style: none;
}

.guide-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.guide-list li i {
    color: #4caf50;
}

.faq-list {
    margin-top: 1rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #eef3f8;
    padding-bottom: 1rem;
}

.faq-question {
    font-weight: 700;
    color: #055a84;
    margin-bottom: 0.5rem;
}

/* Футер */
.footer {
    margin-top: 3rem;
    text-align: center;
    border-top: 1px solid #bfdef0;
    padding-top: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-icons a {
    color: #2c7cb6;
    font-size: 1.5rem;
    transition: 0.2s;
}

.social-icons a:hover {
    color: #0a5175;
    transform: translateY(-3px);
}

/* Toast уведомление */
.toast-msg {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f4e70;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    z-index: 1000;
    opacity: 0;
    transition: 0.2s;
    pointer-events: none;
}

/* Адаптивность */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-image i {
        font-size: 7rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        margin: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        margin-top: 1rem;
        gap: 1rem;
        justify-content: center;
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .burger {
        display: block;
    }
    
    .main-wrapper {
        padding: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image i {
        font-size: 5rem;
    }
    
    .wiki-sidebar {
        flex: 0 0 100%;
        position: static;
    }
    
    .quest-line-header {
        flex-direction: column;
        text-align: center;
    }
    
    .boss-card {
        flex-direction: column;
        text-align: center;
    }
    
    .review-card {
        flex-direction: column;
        text-align: center;
    }
    
    .command-row {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .donate-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .stat-card, .boss-stats, .quest-stats {
        grid-template-columns: 1fr;
    }
    
    .ip-text {
        font-size: 1rem;
    }
    
    .update-item {
        flex-direction: column;
    }
    
    .update-date {
        min-width: auto;
    }
}