/* ==================== MINEZONA DLE Template ==================== */
/* Основные стили */

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

:root {
    --primary: #4CAF50;
    --primary-dark: #2E7D32;
    --secondary: #2196F3;
    --accent: #00E676;
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --text: #fff;
    --text-muted: #888;
    --text-dark: #666;
    --danger: #F44336;
    --warning: #FFC107;
    --purple: #9C27B0;
    --cyan: #00BCD4;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
    min-height: 100vh;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== Background Effects ==================== */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(76, 175, 80, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(156, 39, 176, 0.08) 0%, transparent 60%);
}

.floating-blocks {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.block {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
    border-radius: 3px;
}

.block:nth-child(1) { left: 5%; animation-duration: 18s; }
.block:nth-child(2) { left: 15%; animation-delay: -5s; animation-duration: 22s; background: linear-gradient(135deg, #8B4513 0%, #5D3A1A 100%); }
.block:nth-child(3) { left: 30%; animation-delay: -10s; animation-duration: 20s; background: linear-gradient(135deg, #607D8B 0%, #455A64 100%); }
.block:nth-child(4) { left: 45%; animation-delay: -15s; animation-duration: 25s; background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%); }
.block:nth-child(5) { left: 60%; animation-delay: -7s; animation-duration: 19s; background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%); }
.block:nth-child(6) { left: 75%; animation-delay: -12s; animation-duration: 23s; background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%); }
.block:nth-child(7) { left: 90%; animation-delay: -3s; animation-duration: 21s; background: linear-gradient(135deg, #F44336 0%, #C62828 100%); }

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* ==================== Layout ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.section {
    padding: 80px 0;
}

/* ==================== Header ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #4CAF50 0%, #00E676 50%, #4CAF50 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    letter-spacing: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 1rem;
    position: relative;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.header-btns {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--text-muted);
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-nav a:hover {
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary);
}

/* ==================== Buttons ==================== */
.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    color: var(--text);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(76, 175, 80, 0.5);
}

.btn-secondary:hover {
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--primary);
    color: var(--text);
}

.btn-danger {
    background: transparent;
    border: 2px solid rgba(244, 67, 54, 0.5);
    color: var(--danger);
}

.btn-danger:hover {
    background: rgba(244, 67, 54, 0.1);
    border-color: var(--danger);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* ==================== Hero Section ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    animation: fadeIn 1s ease;
}

.hero-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
}

.hero-logo .mine {
    background: linear-gradient(135deg, #4CAF50, #00E676);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-logo .zona {
    background: linear-gradient(135deg, #2196F3, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.hero p {
    color: var(--text-muted);
    font-size: 1.3rem;
    max-width: 500px;
    margin: 20px auto 40px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== Section Titles ==================== */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #4CAF50, #00E676);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* ==================== Server Card ==================== */
.server-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.server-card:hover {
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(76, 175, 80, 0.1);
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-online {
    color: var(--primary);
    font-weight: 600;
}

.server-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.server-desc {
    color: var(--text-muted);
}

.online-count {
    text-align: right;
}

.online-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.online-label {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.server-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    transition: all 0.3s;
}

.stat-box:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-3px);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    color: var(--text-dark);
    font-size: 0.85rem;
    margin-top: 5px;
}

.stat-value.green { color: var(--primary); }
.stat-value.cyan { color: var(--cyan); }
.stat-value.purple { color: var(--purple); }
.stat-value.yellow { color: var(--warning); }

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 25px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transition: width 1s ease;
}

.mod-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.mod-tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    background: rgba(76, 175, 80, 0.15);
    color: var(--primary);
    transition: all 0.3s;
}

.mod-tag:hover {
    transform: scale(1.05);
}

.mod-tag.blue { background: rgba(33, 150, 243, 0.15); color: var(--secondary); }
.mod-tag.orange { background: rgba(255, 152, 0, 0.15); color: #FF9800; }
.mod-tag.purple { background: rgba(156, 39, 176, 0.15); color: var(--purple); }
.mod-tag.red { background: rgba(244, 67, 54, 0.15); color: var(--danger); }

.server-btns {
    display: flex;
    gap: 15px;
}

.server-btns .btn { flex: 1; }
.server-btns .btn-secondary { flex: 0 0 auto; }

/* ==================== News Grid ==================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
}

.news-category a {
    padding: 6px 14px;
    background: rgba(76, 175, 80, 0.9);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #fff;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.news-meta a {
    color: var(--text-muted);
}

.news-meta a:hover {
    color: var(--primary);
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-title a {
    color: var(--text);
}

.news-title a:hover {
    color: var(--primary);
}

.news-short {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-rating {
    display: flex;
    gap: 5px;
}

/* ==================== Full Article ==================== */
.full-article {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 100px auto 50px;
    animation: fadeIn 0.5s ease;
}

.article-header {
    text-align: center;
    margin-bottom: 35px;
}

.article-category a {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 25px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.article-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    color: var(--text-muted);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-icon {
    font-size: 1.1rem;
}

.article-cover {
    margin: -40px -40px 35px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.article-cover img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2,
.article-content h3 {
    font-family: 'Orbitron', sans-serif;
    margin: 30px 0 15px;
    color: var(--primary);
}

.article-content img {
    border-radius: 12px;
    margin: 20px 0;
}

.article-content a {
    color: var(--primary);
    border-bottom: 1px dashed var(--primary);
}

.article-content a:hover {
    border-bottom-style: solid;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    margin: 25px 0;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

.article-content code {
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: monospace;
    color: var(--accent);
}

.article-content pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 20px 0;
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 25px 0;
    border-top: 1px solid var(--border);
    margin-top: 30px;
}

.tags-label {
    color: var(--text-muted);
}

.article-tags a {
    padding: 6px 14px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.9rem;
}

.article-tags a:hover {
    background: rgba(76, 175, 80, 0.25);
}

.article-rating-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.rating-stars {
    display: flex;
    gap: 5px;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.share-btn.vk {
    background: #4a76a8;
    color: #fff;
}

.share-btn.tg {
    background: #0088cc;
    color: #fff;
}

.share-btn.copy {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-top: 1px solid var(--border);
    margin-top: 20px;
}

.article-navigation a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.article-navigation a:hover {
    color: var(--primary);
}

/* ==================== Comments ==================== */
.comments-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.comments-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.comments-closed {
    padding: 30px;
    text-align: center;
    background: rgba(244, 67, 54, 0.1);
    border-radius: 12px;
    color: var(--text-muted);
}

.add-comment-form {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
}

.add-comment-form h4 {
    margin-bottom: 20px;
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    animation: fadeIn 0.3s ease;
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.comment-body {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author a {
    font-weight: 600;
    color: var(--text);
}

.comment-author a:hover {
    color: var(--primary);
}

.author-group {
    font-size: 0.8rem;
    padding: 2px 8px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 10px;
    margin-left: 10px;
}

.comment-date {
    color: var(--text-dark);
    font-size: 0.85rem;
}

.comment-content {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.comment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-actions {
    display: flex;
    gap: 15px;
}

.comment-action {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.comment-action:hover {
    color: var(--primary);
}

.comment-action.delete:hover {
    color: var(--danger);
}

/* ==================== Launcher Section ==================== */
.launcher-section {
    background: var(--bg-card);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    border: 1px solid var(--border);
}

.launcher-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.launcher-title span {
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launcher-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #aaa;
    transition: all 0.3s;
}

.feature-list li:hover {
    color: var(--text);
    transform: translateX(5px);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.launcher-preview {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s;
}

.launcher-preview:hover {
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.1);
}

.launcher-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.launcher-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.launcher-dot.red { background: var(--danger); }
.launcher-dot.yellow { background: var(--warning); }
.launcher-dot.green { background: var(--primary); }

.launcher-version {
    color: var(--text-dark);
    font-size: 0.85rem;
    margin-left: 15px;
}

.launcher-server {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.launcher-server span:first-child { color: #aaa; }
.launcher-server span:last-child { color: var(--primary); font-size: 0.9rem; }

.launcher-play-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 10px;
    color: var(--text);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
}

.launcher-play-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

/* ==================== Mods Grid ==================== */
.mods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mod-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.mod-card:hover {
    transform: translateY(-8px);
    border-color: rgba(76, 175, 80, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mod-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mod-icon.blue { background: linear-gradient(135deg, var(--secondary), var(--cyan)); }
.mod-icon.purple { background: linear-gradient(135deg, var(--purple), #E91E63); }
.mod-icon.orange { background: linear-gradient(135deg, #FF9800, var(--danger)); }

.mod-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.mod-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.mod-card small {
    color: var(--text-dark);
    font-size: 0.85rem;
}

/* ==================== Cabinet Styles ==================== */
.cabinet-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px 50px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.cabinet-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
    animation: slideInLeft 0.5s ease;
}

.cab-profile {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 25px;
}

.cab-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    transition: transform 0.3s;
    overflow: hidden;
}

.cab-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cab-avatar:hover {
    transform: scale(1.05) rotate(5deg);
}

.cab-avatar-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid #1a1a2e;
    animation: pulse 2s infinite;
}

.cab-username {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cab-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--warning);
}

.cab-nav {
    list-style: none;
}

.cab-nav-item {
    margin-bottom: 8px;
}

.cab-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

.cab-nav-link:hover {
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary);
    transform: translateX(5px);
}

.cab-nav-link.active {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

.cab-nav-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.cab-nav-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.badge-new {
    background: var(--danger);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    margin-left: auto;
}

.cabinet-main {
    animation: slideInRight 0.5s ease;
}

.cab-page-header {
    margin-bottom: 30px;
}

.cab-page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.cab-page-subtitle {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.cab-tab {
    display: none;
    animation: fadeIn 0.4s ease;
}

.cab-tab.active {
    display: block;
}

.cab-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.cab-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.cab-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cab-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cab-stat-icon.green { background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1)); }
.cab-stat-icon.blue { background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.1)); }
.cab-stat-icon.purple { background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.1)); }
.cab-stat-icon.gold { background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1)); }

.cab-stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cab-stat-label {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.cab-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.cab-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
}

.cab-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.cab-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--text);
}

.cab-card-badge {
    padding: 6px 14px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary);
}

.cab-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cab-info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.cab-info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-muted);
}

.info-value {
    color: var(--text);
    font-weight: 500;
}

.cab-skin-preview {
    text-align: center;
}

.cab-skin-container {
    width: 150px;
    height: 200px;
    margin: 0 auto 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.cab-skin-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cab-skin-container:hover {
    border-color: rgba(76, 175, 80, 0.5);
    background: rgba(76, 175, 80, 0.05);
}

.cab-skin-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.server-progress-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.server-progress-item:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateX(5px);
}

.server-progress-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.server-progress-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.server-progress-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.server-progress-level {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.server-progress-time {
    text-align: right;
}

.progress-time-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.progress-time-label {
    color: var(--text-dark);
    font-size: 0.85rem;
}

.cab-form-group {
    margin-bottom: 20px;
}

.cab-form-group label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.cab-achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.cab-achievement {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.cab-achievement:hover {
    transform: translateY(-3px);
    border-color: rgba(76, 175, 80, 0.3);
}

.cab-achievement.locked {
    opacity: 0.5;
    filter: grayscale(1);
}

.cab-achievement-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cab-achievement-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.cab-achievement-desc {
    color: var(--text-dark);
    font-size: 0.8rem;
}

/* ==================== Footer ==================== */
footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary);
}

/* ==================== Modals ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--text);
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 10px;
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    font-family: 'Rajdhani', sans-serif;
}

.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--primary);
    cursor: pointer;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Download Options */
.download-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text);
}

.download-option:hover {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateX(5px);
    color: var(--text);
}

.download-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(76, 175, 80, 0.15);
}

.download-info h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.download-info span {
    color: var(--text-dark);
    font-size: 0.85rem;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-icon {
    width: 45px;
    height: 45px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.notification-text {
    font-weight: 600;
}

.notification-close {
    margin-left: 15px;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 1.2rem;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination,
.swchItem {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination a,
.pagination span,
.swchItem a,
.swchItem span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s;
}

.pagination a:hover,
.swchItem a:hover {
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.pagination span.nav_ext,
.swchItem span.navigation {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: #fff;
}

/* ==================== DLE Specific Styles ==================== */
.dle-error,
.dle-info {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.dle-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: var(--danger);
}

.dle-info {
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.3);
    color: var(--secondary);
}

/* Rating */
.ratingplus,
.ratingminus {
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.ratingplus:hover {
    background: rgba(76, 175, 80, 0.2);
}

.ratingminus:hover {
    background: rgba(244, 67, 54, 0.2);
}

/* ==================== Responsive ==================== */
@media (max-width: 1200px) {
    .cab-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cab-content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .launcher-section {
        grid-template-columns: 1fr;
        padding: 40px 25px;
    }
    
    .mods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .server-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .cabinet-container {
        grid-template-columns: 1fr;
    }
    
    .cabinet-sidebar {
        position: relative;
        top: 0;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .mods-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-btns {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .server-btns {
        flex-direction: column;
    }
    
    .full-article {
        padding: 25px;
        margin: 80px 15px 30px;
    }
    
    .article-cover {
        margin: -25px -25px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .header-btns .btn-secondary {
        display: none;
    }
    
    .cab-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cab-achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-logo {
        font-size: 2.5rem;
    }
}
