/* Защита от копирования */
* {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Разрешить выделение только для input и textarea */
input, textarea {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Блокировка drag изображений */
img {
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
    pointer-events: none !important;
}

/* Скрытие текста при выделении */
::selection {
    background: transparent !important;
    color: inherit !important;
}

::-moz-selection {
    background: transparent !important;
    color: inherit !important;
}

/* Блокировка контекстного меню */
body {
    -webkit-context-menu: none !important;
    -moz-context-menu: none !important;
    context-menu: none !important;
}

/* Защита от печати */
@media print {
    * {
        display: none !important;
    }
    
    body::before {
        content: "Печать запрещена";
        display: block !important;
        font-size: 24px;
        text-align: center;
        margin-top: 50vh;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.logo {
    padding-top: 0.5%;
}

.logo-text {
    color: #ffffff;
}

.logo-accent {
    color: #1a17caff;
    text-shadow: 0 0 20px rgb(96, 99, 255);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: #1a17caff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(73, 76, 255, 0.856);
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1a17caff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a17caff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #1a17caff, #4a5cff);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(68, 81, 255, 0.74);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(68, 112, 255, 0.4);
}

.user-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-icon:hover {
    background: rgba(68, 81, 255, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #101431 50%, #0a0a0a 100%);
    z-index: -2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(68, 81, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(68, 155, 255, 0.1) 0%, transparent 50%);
    animation: particles 20s ease-in-out infinite;
}

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

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(4, 0, 255, 0.1), rgba(155, 68, 255, 0.05));
    border-radius: 20px;
    animation: float 15s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.main-title {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.title-line.accent {
    color: #1a17caff;
    text-shadow: 0 0 40px rgba(96, 68, 255, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 40px rgba(68, 71, 255, 0.6); }
    to { text-shadow: 0 0 60px rgba(68, 127, 255, 0.8); }
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-play {
    background: linear-gradient(135deg, #1a17caff, rgb(75, 72, 233));
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(71, 68, 255, 0.4);
    text-transform: uppercase;
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(68, 81, 255, 0.6);
}

.hero-links {
    display: flex;
    gap: 30px;
}

.hero-link {
    color: #1a17caff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.hero-link:hover {
    color: #ffffff;
}

.hero-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a17caff;
    transition: width 0.3s ease;
}

.hero-link:hover::after {
    width: 100%;
}

.hero-characters {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.character {
    position: absolute;
    width: 200px;
    height: 300px;
    animation: characterFloat 6s ease-in-out infinite;
}

.character-1 {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.character-2 {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.character-3 {
    top: 30%;
    right: 15%;
    animation-delay: 4s;
}

.character-model {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(68, 96, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(68, 71, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.character-model::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, rgba(68, 87, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes characterFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

/* Updates Section */
.updates {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0a0a1a 100%);
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    letter-spacing: -1px;
}

.updates-scroll {
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #1a17caff transparent;
}

.updates-scroll::-webkit-scrollbar {
    height: 8px;
}

.updates-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.updates-scroll::-webkit-scrollbar-thumb {
    background: #1a17caff;
    border-radius: 4px;
}

.updates-track {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    min-width: max-content;
}

.update-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    min-width: 300px;
    border: 1px solid rgba(0, 17, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.update-card:hover {
    transform: translateY(-10px);
    background: rgba(81, 68, 255, 0.1);
    border-color: #1a17caff;
    box-shadow: 0 20px 40px rgba(71, 68, 255, 0.2);
}

.update-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.update-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a17caff, #7066ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}

.update-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.update-date {
    color: #1a17caff;
    font-weight: 600;
    font-size: 14px;
}

/* Game Modes Section */
.game-modes {
    padding: 100px 0;
    background: #0a0a0a;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mode-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mode-card:hover {
    transform: translateY(-10px);
    background: rgba(68, 71, 255, 0.1);
    border-color: #1a17caff;
    box-shadow: 0 20px 40px rgba(68, 71, 255, 0.2);
}

.mode-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.mode-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.btn-battle {
    display: block;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a17caff, #3363cc);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(68, 112, 255, 0.4);
    text-transform: uppercase;
}

.btn-battle:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(68, 71, 255, 0.6);
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1a17caff;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: #1a17caff;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1a17caff;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

.modal-video {
    width: 100%;
    height: 300px;
    background: #0a0a0a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.video-placeholder i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a17caff;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.requirements-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.requirement-item i {
    color: #1a17caff;
    font-size: 18px;
    width: 20px;
}

.requirement-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    min-width: 100px;
}

.requirement-value {
    color: #1a17caff;
    font-weight: 700;
}

/* Support Chat */
.support-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a17caff, #3336cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(81, 68, 255, 0.4);
    z-index: 1000;
}

.support-chat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(81, 68, 255, 0.6);
}

.support-chat i {
    color: #ffffff;
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .social-links {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .nav {
        order: 4;
        width: 100%;
        justify-content: center;
    }
    
    .hero-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .updates-track {
        gap: 20px;
    }
    
    .update-card {
        min-width: 250px;
    }
    
    .modes-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 20px;
    }
    
    .support-chat {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .support-chat i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn-play, .btn-battle {
        padding: 15px 30px;
        font-size: 16px;
    }
}
