/* DryMine Premium Hardcore Style */
:root {
    --dry-red: #dc2626;
    --dry-red-dark: #b91c1c;
    --dry-red-light: #ef4444;
    --mine-orange: #f97316;
    --mine-orange-dark: #ea580c;
    --mine-orange-light: #fb923c;
    --bg-dark: #09090b;
    --bg-card: #18181b;
    --bg-card-hover: #27272a;
    --border: #27272a;
    --text: #fafafa;
    --text-dim: #a1a1aa;
    --text-muted: #71717a;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --glow-red: 0 0 20px rgba(220, 38, 38, 0.3);
    --glow-orange: 0 0 20px rgba(249, 115, 22, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Прелоадер */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.pre-dry { color: var(--dry-red); }
.pre-mine { color: var(--mine-orange); }

.preloader-spinner {
    width: 40px;
    height: 40px;
    margin: 20px auto;
    border: 3px solid var(--text-dim);
    border-top-color: var(--dry-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Градиентный фон */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-1 {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.15), transparent 50%);
    animation: floatBg 20s ease-in-out infinite;
}

.gradient-2 {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.1), transparent 50%);
    animation: floatBg 25s ease-in-out infinite reverse;
}

.gradient-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, var(--bg-dark) 90%);
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(2%, 2%); }
}

/* Частицы */
#particlesCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

/* Контейнер */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-wrapper {
    position: relative;
    z-index: 1;
}

/* Навигация */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s;
}

.main-nav.scrolled {
    padding: 12px 0;
    background: rgba(9, 9, 11, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--glow-red);
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-size: 1.6rem;
    font-weight: 800;
}

.logo-dry { color: var(--dry-red); }
.logo-mine { color: var(--mine-orange); }

.logo-badge {
    font-size: 0.55rem;
    background: linear-gradient(135deg, var(--dry-red), var(--mine-orange));
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
    color: white;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--dry-red), var(--mine-orange));
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero секция */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 32px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    backdrop-filter: blur(4px);
}

.tag-icon {
    color: var(--dry-red);
}

.tag-pulse {
    width: 8px;
    height: 8px;
    background: var(--dry-red);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.2); }
}

.hero-title {
    margin-bottom: 24px;
}

.title-dry {
    font-size: 5rem;
    font-weight: 900;
    color: var(--dry-red);
    display: inline-block;
}

.title-mine {
    font-size: 5rem;
    font-weight: 900;
    color: var(--mine-orange);
    display: inline-block;
}

.title-sub {
    font-size: 1rem;
    color: var(--text-dim);
    display: block;
    margin-top: 8px;
    letter-spacing: 2px;
}

.hero-description {
    color: var(--text-dim);
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.6;
}

/* Серверная карточка */
.hero-server {
    margin-bottom: 32px;
}

.server-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    max-width: 380px;
}

.server-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.server-row:last-child {
    border-bottom: none;
}

.server-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.server-label i {
    color: var(--dry-red);
}

.server-value-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.server-ip {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.server-port {
    color: var(--mine-orange);
    font-weight: 600;
}

.copy-ip {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.copy-ip:hover {
    color: var(--dry-red);
}

.server-version {
    font-weight: 600;
    color: var(--text);
}

.server-online {
    font-weight: 700;
    color: #22c55e;
}

.online-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    margin-left: 8px;
}

/* Кнопки */
.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    font-family: inherit;
}

.btn-donate {
    background: linear-gradient(135deg, var(--dry-red), var(--dry-red-dark));
    color: white;
    box-shadow: var(--glow-red);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.btn-rules {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
}

.btn-rules:hover {
    border-color: var(--mine-orange);
    background: rgba(249, 115, 22, 0.1);
}

/* Статистика карточка */
.hero-stats-wrapper {
    display: flex;
    justify-content: center;
}

.stats-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 320px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dry-red);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Scroll индикатор */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Секции общие */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.gradient {
    background: linear-gradient(135deg, var(--dry-red), var(--mine-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--dry-red), var(--mine-orange));
    margin: 20px auto 0;
    border-radius: 3px;
}

/* Features */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--dry-red), var(--mine-orange));
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--dry-red-light);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--dry-red);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--mine-orange);
}

/* Info секция */
.info {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(220, 38, 38, 0.03));
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.info-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s;
}

.info-block:hover {
    transform: translateY(-3px);
    border-color: var(--mine-orange);
}

.info-icon {
    font-size: 2rem;
    color: var(--mine-orange);
    margin-bottom: 20px;
}

.info-block h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dim);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li i {
    width: 20px;
    color: var(--dry-red);
}

/* Статистика секция */
.stats-section {
    padding: 80px 0;
}

.stats-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stats-item {
    flex: 1;
    min-width: 150px;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dry-red), var(--mine-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stats-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Баннер загрузок */
.downloads-banner {
    padding: 0 0 60px 0;
}

.banner-wrapper {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(249, 115, 22, 0.08));
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 32px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    transition: all 0.3s;
}

.banner-wrapper:hover {
    border-color: var(--dry-red);
    transform: translateY(-3px);
    box-shadow: var(--glow-red);
}

.banner-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dry-red), var(--mine-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-icon i {
    font-size: 2rem;
    color: white;
}

.banner-content {
    flex: 1;
}

.banner-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.banner-content p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.banner-features span {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
    color: var(--text-dim);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.banner-features span i {
    color: var(--mine-orange);
    font-size: 0.65rem;
}

.btn-banner {
    background: linear-gradient(135deg, var(--dry-red), var(--dry-red-dark));
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-banner:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-red);
    gap: 14px;
}

/* Сообщество */
.community {
    padding: 80px 0;
}

.community-wrapper {
    background: linear-gradient(135deg, var(--bg-card), rgba(24, 24, 27, 0.8));
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.community-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.community-content > p {
    color: var(--text-dim);
    margin-bottom: 32px;
}

.social-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-card i:first-child {
    font-size: 1.8rem;
}

.social-card span {
    flex: 1;
    font-weight: 600;
    color: var(--text);
}

.social-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: var(--dry-red);
}

.social-card:hover {
    border-color: var(--dry-red);
    transform: translateX(5px);
}

.social-card:hover .social-arrow {
    opacity: 1;
    transform: translateX(0);
}

.social-card.vk i:first-child { color: #0077ff; }
.social-card.discord i:first-child { color: #5865f2; }
.social-card.telegram i:first-child { color: #0088cc; }

/* Блок голосования */
.vote-block {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(249, 115, 22, 0.1));
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 20px;
    margin-top: 30px;
    padding: 20px;
    transition: all 0.3s;
}

.vote-block:hover {
    border-color: var(--dry-red);
    transform: translateY(-2px);
}

.vote-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.vote-header i {
    font-size: 1.8rem;
    color: #fbbf24;
}

.vote-header h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text);
}

.vote-content p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.vote-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.btn-vote {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a2e;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-vote:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.btn-vote i:first-child {
    font-size: 1.1rem;
}

.btn-vote i:last-child {
    color: #fbbf24;
    text-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
}

.vote-info {
    text-align: center;
}

.vote-tip {
    font-size: 0.7rem;
    color: #fbbf24;
    letter-spacing: 1px;
}

.community-quote {
    background: rgba(220, 38, 38, 0.05);
    border-radius: 24px;
    padding: 32px;
    border-left: 3px solid var(--dry-red);
}

.community-quote i {
    font-size: 2rem;
    color: var(--dry-red);
    opacity: 0.5;
    margin-bottom: 16px;
}

.community-quote p {
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.community-quote span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Футер */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
    background: rgba(9, 9, 11, 0.95);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
}

.footer-name {
    font-size: 1.3rem;
    font-weight: 800;
}

.footer-tag {
    font-size: 0.55rem;
    background: linear-gradient(135deg, var(--dry-red), var(--mine-orange));
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
    color: white;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a,
.footer-rules-btn {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.footer-links a:hover,
.footer-rules-btn:hover {
    color: var(--dry-red);
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Модальное окно */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 24px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h2 i {
    color: var(--dry-red);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dim);
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--dry-red);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(85vh - 80px);
}

.rules-warning {
    background: rgba(220, 38, 38, 0.1);
    border-left: 3px solid var(--dry-red);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
}

.rules-warning i {
    font-size: 1.5rem;
    color: var(--dry-red);
}

.rules-note {
    background: rgba(249, 115, 22, 0.1);
    border-left: 3px solid var(--mine-orange);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
}

.rules-donate-note {
    background: rgba(34, 197, 94, 0.1);
    border-left: 3px solid #22c55e;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rule-card-modal {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 16px;
}

.rule-number {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dry-red);
    min-width: 50px;
}

.rule-content h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.rule-content p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.rule-punish {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--mine-orange);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Уведомления */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 14px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
}

/* Адаптив */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-server {
        display: flex;
        justify-content: center;
    }
    
    .hero-stats-wrapper {
        order: -1;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .community-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 24px;
        border-top: 1px solid var(--border);
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }

    .banner-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .banner-features {
        justify-content: center;
    }

    .btn-banner {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .title-dry,
    .title-mine {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-wrapper {
        justify-content: center;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
    
    .modal-container {
        width: 95%;
    }
    
    .rule-card-modal {
        flex-direction: column;
    }
    
    .btn-vote {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .vote-header {
        justify-content: center;
    }
}