/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    display: flex;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 0.8rem;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
    overflow-y: auto;
    z-index: 1000;
}

.sidebar-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.sidebar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.sidebar .nav {
    text-align: left;
}

.sidebar .nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin: 0;
    padding: 0;
}

.sidebar .nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    font-size: 0.85rem;
    text-align: left;
    display: block;
    min-height: 36px;
    line-height: 1.3;
    border-left: 3px solid transparent;
    margin-bottom: 0.2rem;
}

.sidebar .nav-link:hover {
    background: rgba(255,255,255,0.2);
    border-left-color: rgba(255,255,255,0.5);
    transform: translateX(5px);
}

.sidebar .nav-link.active {
    background: rgba(255,255,255,0.3);
    border-left-color: white;
    font-weight: 600;
}

/* Language Switcher */
.language-switcher-top {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 0.5rem;
    z-index: 1001;
    background: rgba(255,255,255,0.95);
    padding: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1002;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #667eea;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.lang-btn {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 40px;
}

.lang-btn:hover {
    background: #667eea;
    color: white;
}

.lang-btn.active {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.container {
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin-left: 250px;
    width: calc(100% - 250px);
    justify-content: center;
    align-items: center;
}



/* Main content */
.main {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: 2rem;
    width: 100%;
    max-width: 1200px;
    margin-left: 0;
    margin-right: 0;
}

.section {
    padding: 3rem;
    border-bottom: 1px solid #eee;
}

/* Avatar styles */
.avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Interesting section styles */
.interesting-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
}

.gallery-caption {
    margin-top: 1rem;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.gallery-hint {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* Spell icons styles */
.tip-item {
    position: relative;
    padding-right: 130px;
    min-height: 120px;
    margin-bottom: 1.5rem;
}

.spell-icon {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.15;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    z-index: 1;
}

/* Special styling for tip-items with spell icons */
.tip-item:has(.spell-icon) p {
    max-width: calc(100% - 150px);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Advanced Mechanics styles */
.advanced-intro {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.advanced-intro p {
    color: white !important;
}

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

.video-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.video-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.video-item .video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 10px;
}

.video-item .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.video-description h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.video-description h5 {
    color: #34495e;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

.video-description h5:first-of-type {
    margin-top: 0;
}

.video-description p {
    color: #555;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.video-description p:last-child {
    margin-bottom: 0;
}

.video-description ul {
    margin: 0.5rem 0 1rem 0;
    padding-left: 1.5rem;
}

.video-description li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.video-description strong {
    color: #2c3e50;
    font-weight: 600;
}

.section:last-child {
    border-bottom: none;
}

.section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.section h3 {
    color: #34495e;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
}

.section h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem 0;
}

/* Content styles */
.content p {
    margin-bottom: 1rem;
    color: #555;
}

.content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Warning box */
.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #f39c12;
}

.warning-box h3 {
    color: #856404;
    margin: 0 0 0.5rem 0;
}

.warning-box p {
    color: #856404;
    margin: 0;
}

/* Updates box */
.updates-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid #5a67d8;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.updates-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #8b9cff, #667eea);
    animation: updates-shine 3s ease-in-out infinite;
}

@keyframes updates-shine {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.updates-box h3 {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.updates-box h4 {
    color: rgba(255, 255, 255, 0.9);
    margin: 1rem 0 0.8rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.updates-box ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.updates-box li {
    margin: 0.8rem 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.updates-box strong {
    color: #fff;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Resource list */
.resource-list {
    list-style: none;
    padding: 0;
}

.resource-link {
    display: inline-block;
    background: #667eea;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin: 0.5rem 0.5rem 0.5rem 0;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

/* Role cards */
.role-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.role-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px);
}

.role-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.role-card p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* Role list */
.role-list {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

.role-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.role-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.role-item h4 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.role-item p {
    color: #555;
    margin: 0;
}

/* Item grid */
.item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.item-card {
    background: white;
    border: 2px solid #e9ecef;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.item-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.item-card h4 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.item-card p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Tips grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip-category {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tip-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.tip-category h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

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

.tip-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tip-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tip-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.tip-item p {
    color: #555;
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Strategy box */
.strategy-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.strategy-box h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.strategy-content h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

.strategy-content h4:first-child {
    margin-top: 0;
}

.strategy-content ul {
    margin: 0.5rem 0 1rem 0;
    padding-left: 1.5rem;
}

.strategy-content li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.strategy-content strong {
    color: white;
    font-weight: 600;
}

/* Tip boxes */
.tip-box {
    background: #e8f5e8;
    border: 1px solid #c3e6c3;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid #28a745;
}

.tip-box h3 {
    color: #155724;
    margin: 0 0 0.5rem 0;
}

.tip-box p {
    color: #155724;
    margin: 0;
}

/* Practical section */
.practical-intro {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.practical-intro p {
    margin: 0;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.practical-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.practical-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.practical-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.practical-item.error {
    background: #fdf2f2;
}

.practical-item.error:hover {
    background: #fce8e8;
}

.practical-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.practical-item p {
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.practical-item.error h4 {
    color: #c0392b;
}

.practical-item.error p {
    color: #7f1d1d;
}

.important-note {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.important-note h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    text-align: center;
}

.important-note p {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.important-note strong {
    color: #fff;
    font-weight: 700;
}

/* Rules section */
.rules-intro {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.rules-intro h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
}

.rules-intro p {
    color: #555;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.rules-intro p:last-child {
    margin-bottom: 0;
}

.rules-intro strong {
    color: #2c3e50;
    font-weight: 600;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.rule-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.rule-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.rule-item.general {
    background: #f8fff8;
}

.rule-item.general:hover {
    background: #f0fff0;
}

.rule-item.optional {
    background: #fffbf0;
}

.rule-item.optional:hover {
    background: #fff8e1;
}

.rule-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.rule-item p {
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* Tooltip styles */
.rule-item {
    position: relative;
    cursor: help;
}

.rule-item::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: normal;
    width: 300px;
    max-width: 90vw;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    word-wrap: break-word;
    overflow-wrap: break-word;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    pointer-events: none;
}

.rule-item::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    border: 5px solid transparent;
    border-top-color: #2c3e50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    pointer-events: none;
}

.rule-item:hover::before,
.rule-item:hover::after {
    opacity: 1;
    visibility: visible;
}

.rule-item:hover::before {
    transform: translateX(-50%) translateY(-10px);
}

.rule-item:hover::after {
    transform: translateX(-50%) translateY(90%);
}

.rules-legend {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid #e9ecef;
}

.rules-legend h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

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

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-block;
    flex-shrink: 0;
}

.legend-color.general {
    background-color: #27ae60;
}

.legend-color.optional {
    background-color: #f39c12;
}

.legend-text {
    color: #555;
    line-height: 1.5;
}

.moderation-box {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.moderation-box h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    text-align: center;
}

.moderation-box p {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.moderation-box strong {
    color: #fff;
    font-weight: 700;
}

/* Detailed rules */
.detailed-rules {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #e9ecef;
}

.detailed-rules h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.detailed-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule-detail {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.rule-detail h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.rule-detail p {
    color: #555;
    margin: 0 0 0.5rem 0;
    line-height: 1.6;
}

.rule-detail p:last-child {
    margin-bottom: 0;
}

.rule-detail strong {
    color: #2c3e50;
    font-weight: 600;
}

.motivation-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.motivation-box h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    text-align: center;
}

.motivation-box p {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.motivation-box p:last-child {
    margin-bottom: 0;
}

.motivation-box strong {
    color: #fff;
    font-weight: 700;
}

/* Video section */
.video-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.video-section h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-container iframe {
    width: 100%;
    height: 315px;
    border: none;
}

/* Maps section */
.maps-intro {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.maps-intro p {
    color: #555;
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.map-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #667eea;
}

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

.map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-image img:hover {
    transform: scale(1.05);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.map-placeholder span {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.map-content {
    padding: 1.5rem;
}

.map-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.map-content p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.maps-tip {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.maps-tip h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    text-align: center;
}

.maps-tip p {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

/* Summit Guide section */
.summit-intro {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.summit-intro p {
    color: #555;
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.summit-strategies {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.strategy-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.strategy-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.strategy-section h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

.strategy-content p {
    color: #555;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.strategy-content p:last-child {
    margin-bottom: 0;
}

.strategy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.strategy-content li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.summit-gallery {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.summit-gallery h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-hint {
    color: #667eea;
    font-size: 0.9rem;
    margin: 1rem 0 0 0;
    font-weight: 500;
    text-align: center;
}

/* Overlay section */
.overlay-image {
    text-align: center;
    margin: 2rem 0;
}

.overlay-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.overlay-img:hover {
    transform: scale(1.02);
}

/* Links section */
.links-intro {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.links-intro p {
    color: #555;
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.link-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.link-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.link-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.links-tip {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.links-tip h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    text-align: center;
}

.links-tip p {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

/* Communication section */
.communication-intro {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.communication-intro h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
}

.communication-intro p {
    color: #555;
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.communication-intro strong {
    color: #2c3e50;
    font-weight: 600;
}

.commands-image {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.commands-image h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
}

.image-container {
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.commands-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.commands-img:hover {
    transform: scale(1.02);
}

.image-caption {
    color: #666;
    font-style: italic;
    margin: 1rem 0 0 0;
    font-size: 0.9rem;
}

.click-hint {
    color: #667eea;
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
    font-weight: 500;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 90vw;
    max-height: 90vh;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close:hover {
    color: #667eea;
}

.modal-caption {
    color: white;
    font-size: 1rem;
    margin-top: 1rem;
    font-style: italic;
}

.communication-tips {
    margin: 2rem 0;
}

.communication-tips h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.communication-tips .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.communication-tips .tip-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.communication-tips .tip-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.communication-tips .tip-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.communication-tips .tip-item p {
    color: #555;
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: #666;
    background: #f8f9fa;
    margin-top: 2rem;
    border-radius: 20px 20px 0 0;
}


/* Image loading optimization */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Fix for images that should be visible immediately */
img[loading="lazy"]:not(.loaded) {
    background-color: #f5f5f5;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ccc"><path d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 48px 48px;
}

/* Responsive design */
@media (max-width: 768px) {
    .sidebar {
        width: 200px;
    }
    
    .container {
        padding: 0 15px;
        margin-left: 200px;
        width: calc(100% - 200px);
    }
    
    .main {
        max-width: 1000px;
    }
    
    
    .section {
        padding: 2rem 1.5rem;
    }
    
    .avatar {
        width: 120px;
        height: 120px;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .role-cards {
        grid-template-columns: 1fr;
    }
    
    .item-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tip-category {
        padding: 1.5rem;
    }
    
    .tip-item {
        padding: 1rem;
    }
    
    .strategy-box {
        padding: 1.5rem;
    }
    
    .strategy-content h4 {
        font-size: 1.1rem;
    }
    
    .practical-item {
        padding: 1rem;
    }
    
    .important-note {
        padding: 1.5rem;
    }
    
    .rule-item {
        padding: 1rem;
    }
    
    .rules-legend {
        padding: 1.5rem;
    }
    
    .moderation-box {
        padding: 1.5rem;
    }
    
    .detailed-rules {
        padding: 1.5rem;
    }
    
    .rule-detail {
        padding: 1rem;
    }
    
    .motivation-box {
        padding: 1.5rem;
    }
    
    .communication-intro {
        padding: 1.5rem;
    }
    
    .commands-image {
        padding: 1.5rem;
    }
    
    .communication-tips .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .communication-tips .tip-item {
        padding: 1rem;
    }
    
    .video-section {
        padding: 1.5rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .maps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .summit-strategies {
        gap: 1.5rem;
    }
    
    .strategy-section {
        padding: 1.5rem;
    }
    
    .summit-gallery {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .gallery-item img {
        height: 120px;
    }
    
    .map-card {
        margin-bottom: 1rem;
    }
    
    .map-image {
        height: 150px;
    }
    
    .map-content {
        padding: 1rem;
    }
    
    .maps-tip {
        padding: 1.5rem;
    }
    
    .link-item {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .links-tip {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        position: fixed;
        bottom: 0;
        top: auto;
        order: 2;
        z-index: 1000;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.show {
        transform: translateY(0);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .container {
        padding: 0 15px;
        order: 1;
        width: 100%;
        margin-left: 0;
        margin-bottom: 80px; /* Отступ для нижнего сайдбара */
    }
    
    .main {
        max-width: 100%;
    }
    
    
    .section {
        padding: 1.5rem 1rem;
    }
    
    .avatar {
        width: 100px;
        height: 100px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-item {
        padding: 1rem;
    }
    
    .video-description {
        padding: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .video-description h4 {
        font-size: 1rem;
    }
    
    .video-description h5 {
        font-size: 0.9rem;
        margin: 0.8rem 0 0.4rem 0;
    }
    
    .interesting-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 150px;
    }
    
    .role-card {
        padding: 1.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tip-category {
        padding: 1rem;
    }
    
    .tip-item {
        padding: 0.8rem;
    }
    
    .strategy-box {
        padding: 1rem;
    }
    
    .strategy-content h4 {
        font-size: 1rem;
    }
    
    .practical-item {
        padding: 0.8rem;
    }
    
    .important-note {
        padding: 1rem;
    }
    
    .important-note h3 {
        font-size: 1.2rem;
    }
    
    .important-note p {
        font-size: 1rem;
    }
    
    .rule-item {
        padding: 0.8rem;
    }
    
    .rules-legend {
        padding: 1rem;
    }
    
    .moderation-box {
        padding: 1rem;
    }
    
    .moderation-box h3 {
        font-size: 1.2rem;
    }
    
    .moderation-box p {
        font-size: 1rem;
    }
    
    .detailed-rules {
        padding: 1rem;
    }
    
    .rule-detail {
        padding: 0.8rem;
    }
    
    .motivation-box {
        padding: 1rem;
    }
    
    .motivation-box h3 {
        font-size: 1.2rem;
    }
    
    .motivation-box p {
        font-size: 1rem;
    }
    
    .communication-intro {
        padding: 1rem;
    }
    
    .commands-image {
        padding: 1rem;
    }
    
    .communication-tips .tip-item {
        padding: 0.8rem;
    }
    
    .video-section {
        padding: 1rem;
    }
    
    .video-container iframe {
        height: 200px;
    }
    
    .maps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .summit-strategies {
        gap: 1rem;
    }
    
    .strategy-section {
        padding: 1rem;
    }
    
    .strategy-section h3 {
        font-size: 1.1rem;
    }
    
    .summit-gallery {
        padding: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }
    
    .gallery-item img {
        height: 100px;
    }
    
    .map-image {
        height: 120px;
    }
    
    .map-content {
        padding: 0.8rem;
    }
    
    .map-content h3 {
        font-size: 1.1rem;
    }
    
    .maps-tip {
        padding: 1rem;
    }
    
    .maps-tip h3 {
        font-size: 1.2rem;
    }
    
    .maps-tip p {
        font-size: 1rem;
    }
    
    .link-item {
        padding: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .links-tip {
        padding: 1rem;
    }
    
    .links-tip h3 {
        font-size: 1.2rem;
    }
    
    .links-tip p {
        font-size: 1rem;
    }
    
    .commands-img {
        max-width: 100%;
    }
    
    .modal-content {
        width: 95%;
        max-width: 100%;
    }
    
    .close {
        top: -30px;
        font-size: 30px;
    }
    
    .modal-caption {
        font-size: 0.9rem;
    }
    
    .rule-item::before {
        width: 250px;
        font-size: 0.8rem;
        padding: 0.8rem;
        z-index: 9999;
        max-width: 80vw;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a6fd8;
}

/* Basic Info Section - Fix strong text color */
.strategy-content strong {
    color: #2c3e50 !important;
    font-weight: 600;
}

/* Video Link Styles for Interesting Section */
.video-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.video-thumbnail:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: scale(1.02);
}

.play-button {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: scale(1.1);
}

.video-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    padding: 0 1rem;
    line-height: 1.3;
}

/* Responsive styles for video link */
@media (max-width: 768px) {
    .video-thumbnail {
        height: 150px;
    }
    
    .play-button {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .video-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .video-thumbnail {
        height: 120px;
    }
    
    .play-button {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .video-title {
        font-size: 0.9rem;
    }
}

/* Mods Section Styles */
.mods-intro {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.mods-intro p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.mods-gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.mod-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mod-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.mod-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.mod-info h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.mod-info p {
    color: #555;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.mod-download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.mod-download-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Code styling for mods section */
.mod-info code {
    background: #f1f3f4;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.5rem 0.8rem;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    color: #2c3e50;
    display: inline-block;
    margin: 0.5rem 0;
    line-height: 1.4;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    word-break: break-all;
}

/* Responsive styles for mods */
@media (max-width: 768px) {
    .mods-gallery {
        gap: 1.5rem;
    }
    
    .mod-item {
        padding: 1.2rem;
    }
    
    .mod-image {
        height: 150px;
    }
    
    .mod-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .mods-intro {
        padding: 1rem;
    }
    
    .mod-item {
        padding: 1rem;
    }
    
    .mod-image {
        height: 120px;
    }
    
    .mod-info h3 {
        font-size: 1.1rem;
    }
    
    .mod-download-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}


