:root {
    --main-bg: #0a0a12;
    --sidebar-bg: #121225;
    --card-bg: #161626;
    --text-color: #e0e0ff;
    --accent-color: #ffcc00;
    --accent-glow: rgba(255, 204, 0, 0.4);
    --border-color: #2a2a4a;
    --highlight-bg: #1e1e3f;
    --lightning-bg: #ffdd44;
    --section-bg: rgba(22, 22, 38, 0.8);
    --glow: 0 0 15px var(--accent-glow);
    --discord-color: #5865F2;
    --website-color: #57F287;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: radial-gradient(circle at center, #050510, #000000);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(40, 40, 70, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(30, 30, 60, 0.15) 0%, transparent 25%);
    z-index: -2;
    pointer-events: none;
}

.sidebar {
    width: 280px;
    background: var(--sidebar-bg);
    height: 100vh;
    position: fixed;
    padding: 30px 20px;
    border-right: 1px solid var(--border-color);
    z-index: 100;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    max-width: 120px;
    height: auto;
}

.nav-buttons {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.nav-button {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.nav-button.active {
    background: rgba(87, 242, 135, 0.15);
    color: var(--accent-color);
    transform: translateX(5px);
}

.nav-button.active::before {
    transform: scaleY(1);
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.nav-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.nav-button:hover::before {
    transform: scaleY(1);
}

.nav-button i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 1.2rem;
}

.guide-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-left: 20px;
}

.guide-submenu.active {
    max-height: 500px;
}

.guide-subbutton {
    display: block;
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 6px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.guide-subbutton:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-color);
}

.guide-subbutton.active {
    background: rgba(255, 204, 0, 0.15);
    color: var(--accent-color);
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    border-top: 1px solid var(--border-color);
}

.main-content {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
    position: relative;
    transition: margin-left 0.3s ease, filter 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.home-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    animation: fadeIn 1s ease-out;
}

.honor-title {
    font-size: 4.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 15px var(--accent-glow);
    position: relative;
    padding-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(45deg, #ffcc00, #ffaa00, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 10px rgba(255, 204, 0, 0.5); }
    100% { text-shadow: 0 0 25px rgba(255, 204, 0, 0.8), 0 0 50px rgba(255, 204, 0, 0.3); }
}

.honor-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 2px;
}

.intro-text {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
    color: #ccc;
    position: relative;
    padding: 0 20px;
}

.intro-text::before, .intro-text::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.intro-text::before {
    top: -20px;
}

.intro-text::after {
    bottom: -20px;
}

.action-buttons {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.action-button {
    display: flex;
    align-items: center;
    padding: 16px 30px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 280px;
}

.action-button i {
    margin-right: 12px;
    font-size: 1.5rem;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.action-button:hover::before {
    left: 100%;
}

.action-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.discord-btn {
    background: linear-gradient(45deg, var(--discord-color), #4752c4);
    color: white;
}

.site-btn {
    background: linear-gradient(45deg, var(--website-color), #3da566);
    color: #000;
}

.section-page {
    display: none;
    padding: 60px 0 30px;
    min-height: 100vh;
    animation: fadeIn 0.8s ease-out;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.page-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.back-button {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.back-button i {
    margin-right: 8px;
}

.items-list {
    list-style-type: none;
}

.items-list li {
    margin-bottom: 15px;
}

.item-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 3px solid transparent;
}

.item-link:hover {
    background: rgba(255, 204, 0, 0.1);
    border-left: 3px solid var(--accent-color);
    transform: translateX(5px);
}

.item-link::before {
    content: "»";
    position: absolute;
    left: 10px;
    color: var(--accent-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.item-link:hover::before {
    opacity: 1;
    left: 15px;
}

.player-avatar {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-link:hover .player-avatar {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
}

.event-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.item-link:hover .event-thumbnail {
    transform: scale(1.05);
}

.item-text {
    flex: 1;
    min-width: 0;
}

.item-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.item-subtitle {
    font-size: 0.95rem;
    color: #aaa;
}

.player-page {
    display: none;
    padding: 60px 0 30px;
    min-height: 100vh;
    animation: fadeIn 0.8s ease-out;
}

.player-header {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.player-photo-container {
    position: relative;
    width: 320px;
    height: 420px;
    flex-shrink: 0;
    perspective: 1000px;
}

.lightning-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lightning-bg);
    clip-path: polygon(
        0 20%, 20% 0, 30% 10%, 40% 0, 50% 10%, 
        60% 0, 70% 10%, 80% 0, 100% 20%, 80% 40%, 
        100% 60%, 80% 80%, 70% 70%, 60% 80%, 50% 70%, 
        40% 80%, 30% 70%, 20% 80%, 0 60%, 20% 40%
    );
    animation: lightning 4s infinite linear;
    z-index: 1;
}

@keyframes lightning {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.player-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.player-photo:hover {
    transform: scale(1.02);
}

.player-info {
    flex: 1;
    min-width: 300px;
}

.player-name {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
    font-weight: 800;
}

.player-nicknames {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #aaa;
    font-style: italic;
}

.player-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #ddd;
}

.player-details {
    background: var(--section-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.details-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 700;
}

.details-list {
    list-style-type: none;
}

.details-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    position: relative;
    padding-left: 25px;
}

.details-list li:last-child {
    border-bottom: none;
}

.details-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.screenshots-section {
    background: var(--section-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.screenshots-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 700;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.screenshot-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
}

.screenshot-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 204, 0, 0.3);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.1);
}

/* Исправления для модального окна скриншотов */
.screenshot-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--accent-color);
    color: black;
}

.modal-nav {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.modal-nav-btn {
    background: var(--accent-color);
    border: none;
    color: black;
    font-size: 1.2rem;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-nav-btn:hover {
    background: #ffdd44;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.modal-nav-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

/* Улучшенные скриншоты в галерее */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.screenshot-thumbnail {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.screenshot-thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

/* Индикатор текущего скриншота */
.screenshot-counter {
    color: white;
    margin-top: 15px;
    font-size: 1.1rem;
    text-align: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.modal-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav-btn:hover {
    background: var(--accent-color);
    color: #000;
}

.event-page {
    display: none;
    padding: 60px 0 30px;
    min-height: 100vh;
    animation: fadeIn 0.8s ease-out;
}

.event-header {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.event-image-container {
    width: 400px;
    height: 300px;
    flex-shrink: 0;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

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

.event-info {
    flex: 1;
    min-width: 300px;
}

.event-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
    font-weight: 800;
}

.event-date {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #aaa;
    font-style: italic;
}

.event-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #ddd;
}

.guide-page {
    display: none;
    padding: 60px 0 30px;
    min-height: 100vh;
    animation: fadeIn 0.8s ease-out;
}

.guide-section {
    display: none;
    background: var(--section-bg);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.guide-section.active {
    display: block;
}

.wiki-title {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow);
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.wiki-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.wiki-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ddd;
}

.wiki-content h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--accent-color);
    font-weight: 600;
}

.wiki-content h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: #ffcc00;
    font-weight: 600;
}

.wiki-content ul, .wiki-content ol {
    margin: 15px 0 15px 30px;
}

.wiki-content li {
    margin-bottom: 8px;
}

.wiki-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #ffcc00;
}

.wiki-content a {
    color: #57F287;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wiki-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(255, 204, 0, 0.3);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

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

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 204, 0, 0.3);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: var(--sidebar-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

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

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

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

#auth-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.discord-corner-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--discord-color);
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-corner-btn:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.discord-corner-btn i {
    font-size: 1.2rem;
}

#user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--sidebar-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    overflow: hidden;
}

.user-menu-content {
    padding: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

.user-name {
    font-weight: 600;
    color: var(--accent-color);
}

.user-menu-item {
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.user-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.comments-section {
    background: var(--section-bg);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

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

.comment-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 15px;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
}

.comment {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid var(--accent-color);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

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

.comment-date {
    font-size: 0.9rem;
    color: #aaa;
    margin-left: auto;
}

.comment-text {
    line-height: 1.5;
    color: #ddd;
}

.login-prompt {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px dashed var(--border-color);
}

.login-prompt p {
    margin-bottom: 15px;
    color: #aaa;
}

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .main-content.blur {
        filter: blur(5px);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .player-header, .event-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .player-photo-container {
        width: 280px;
        height: 370px;
    }
    
    .event-image-container {
        width: 100%;
        max-width: 500px;
        height: 250px;
    }
    
    .honor-title {
        font-size: 3rem;
    }
    
    .intro-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .home-page {
        padding: 20px 15px;
    }
    
    .honor-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .intro-text {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-button {
        min-width: 250px;
        font-size: 1.1rem;
    }
    
    .player-name, .event-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .guide-section {
        padding: 25px;
    }
    
    .wiki-title {
        font-size: 1.7rem;
    }
    
    .modal-nav {
        padding: 0 10px;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .honor-title {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .action-button {
        padding: 14px 20px;
        font-size: 1rem;
        min-width: 220px;
    }
    
    .player-photo-container {
        width: 240px;
        height: 320px;
    }
    
    .player-name, .event-title {
        font-size: 1.7rem;
    }
    
    .page-title {
        font-size: 1.7rem;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .item-link {
        padding: 15px;
    }
    
    .player-avatar {
        width: 50px;
        height: 50px;
    }
    
    .event-thumbnail {
        width: 60px;
        height: 45px;
    }
}