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

:root {
    --primary-purple: #9966CC;
    --secondary-purple: #663399;
    --accent-purple: #CC99FF;
    --dark-purple: #4A0E4E;
    --light-purple: #E6D7FF;
    --crystal-glow: #B19CD9;
    --text-light: #FFFFFF;
    --text-dark: #2D1B69;
    --gradient-primary: linear-gradient(135deg, #9966CC 0%, #663399 100%);
    --gradient-secondary: linear-gradient(135deg, #CC99FF 0%, #9966CC 100%);
    --gradient-crystal: linear-gradient(45deg, #E6D7FF 0%, #B19CD9 50%, #9966CC 100%);
}

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

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

/* Animated Background */
.stars, .twinkling {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}

.stars {
    background: #000 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="0.5" fill="%23fff" opacity="0.8"/><circle cx="80" cy="40" r="0.3" fill="%23fff" opacity="0.6"/><circle cx="40" cy="80" r="0.4" fill="%23fff" opacity="0.7"/><circle cx="90" cy="90" r="0.2" fill="%23fff" opacity="0.5"/><circle cx="10" cy="60" r="0.3" fill="%23fff" opacity="0.6"/></svg>') repeat;
    background-size: 200px 200px;
}

.twinkling {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="0.2" fill="%239966CC" opacity="0.8"/><circle cx="75" cy="75" r="0.3" fill="%23CC99FF" opacity="0.6"/><circle cx="50" cy="10" r="0.2" fill="%23B19CD9" opacity="0.7"/></svg>') repeat;
    background-size: 300px 300px;
    animation: move-twink-back 200s linear infinite;
}

@keyframes move-twink-back {
    from { background-position: 0 0; }
    to { background-position: -10000px 5000px; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.7rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px var(--crystal-glow));
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.nav-link:hover {
    color: var(--accent-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

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

.join-btn {
    background: var(--gradient-primary) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    border: none;
    transition: all 0.3s ease;
    color: var(--text-light) !important;
    position: relative;
    overflow: hidden;
}

.join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 25px;
    z-index: -1;
}

.join-btn::after {
    display: none !important;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(153, 102, 204, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(153, 102, 204, 0.2);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mobile-menu-toggle:hover {
    background: rgba(153, 102, 204, 0.1);
    border-color: var(--accent-purple);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-toggle.active {
    background: rgba(153, 102, 204, 0.2);
}

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

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

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

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

.hero-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-crystal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 0 0 30px rgba(153, 102, 204, 0.5);
}

.title-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-purple);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 1s both;
}

/* Buttons */
.btn {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(153, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(153, 102, 204, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-purple);
    border: 2px solid var(--accent-purple);
}

.btn-secondary:hover {
    background: var(--accent-purple);
    color: var(--text-dark);
    transform: translateY(-3px);
}

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

.btn-primary:hover .btn-glow {
    left: 100%;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

/* Crystal Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.crystal-container {
    position: relative;
    width: 300px;
    height: 300px;
    visibility: visible;
}

.crystal {
    position: absolute;
    background: var(--gradient-crystal);
    border-radius: 10px;
    animation: fadeInCrystal 0.8s ease-out forwards, float 6s ease-in-out infinite;
    opacity: 0;
}

.crystal-1 {
    width: 60px;
    height: 120px;
    top: 20%;
    left: 30%;
    transform: rotate(15deg);
    animation-delay: 0.2s, 0.2s;
    box-shadow: 0 0 30px rgba(153, 102, 204, 0.6);
}

.crystal-2 {
    width: 80px;
    height: 160px;
    top: 10%;
    right: 20%;
    transform: rotate(-20deg);
    animation-delay: 0.4s, 0.4s;
    box-shadow: 0 0 40px rgba(204, 153, 255, 0.6);
}

.crystal-3 {
    width: 50px;
    height: 100px;
    bottom: 30%;
    left: 20%;
    transform: rotate(45deg);
    animation-delay: 0.6s, 0.6s;
    box-shadow: 0 0 25px rgba(177, 156, 217, 0.6);
}

.crystal-4 {
    width: 70px;
    height: 140px;
    bottom: 20%;
    right: 30%;
    transform: rotate(-10deg);
    animation-delay: 0.8s, 0.8s;
    box-shadow: 0 0 35px rgba(153, 102, 204, 0.6);
}

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

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(var(--rotation, 0deg)); 
        will-change: transform;
    }
    50% { 
        transform: translateY(-20px) rotate(var(--rotation, 0deg)); 
        will-change: transform;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-purple);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Animations */
@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
}

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

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(74, 14, 78, 0.05);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(153, 102, 204, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(153, 102, 204, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(153, 102, 204, 0.2);
    border-color: var(--accent-purple);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-icon svg {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Hover animations for feature icons */
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-secondary);
    box-shadow: 0 0 30px rgba(153, 102, 204, 0.6);
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.2) rotate(-5deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

/* Individual icon animations */
.feature-card:nth-child(1):hover .feature-icon svg {
    animation: checkPulse 0.6s ease-in-out;
}

.feature-card:nth-child(2):hover .feature-icon svg {
    animation: heartBeat 0.8s ease-in-out;
}

.feature-card:nth-child(3):hover .feature-icon svg {
    animation: mapSpin 0.7s ease-in-out;
}

.feature-card:nth-child(4):hover .feature-icon svg {
    animation: gearRotate 1s ease-in-out;
}

.feature-card:nth-child(5):hover .feature-icon svg {
    animation: shieldBounce 0.6s ease-in-out;
}

.feature-card:nth-child(6):hover .feature-icon svg {
    animation: calendarFlip 0.8s ease-in-out;
}

/* Keyframe animations */
@keyframes checkPulse {
    0%, 100% { transform: scale(1.2) rotate(-5deg); }
    50% { transform: scale(1.4) rotate(-5deg); }
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1.2) rotate(-5deg); }
    25% { transform: scale(1.3) rotate(-3deg); }
    75% { transform: scale(1.35) rotate(-7deg); }
}

@keyframes mapSpin {
    0% { transform: scale(1.2) rotate(-5deg); }
    50% { transform: scale(1.3) rotate(15deg); }
    100% { transform: scale(1.2) rotate(-5deg); }
}

@keyframes gearRotate {
    0% { transform: scale(1.2) rotate(-5deg); }
    100% { transform: scale(1.2) rotate(355deg); }
}

@keyframes shieldBounce {
    0%, 100% { transform: scale(1.2) rotate(-5deg) translateY(0); }
    50% { transform: scale(1.3) rotate(-5deg) translateY(-5px); }
}

@keyframes calendarFlip {
    0% { transform: scale(1.2) rotate(-5deg) rotateY(0deg); }
    50% { transform: scale(1.3) rotate(-5deg) rotateY(180deg); }
    100% { transform: scale(1.2) rotate(-5deg) rotateY(360deg); }
}

/* Click animation */
.feature-card:active .feature-icon {
    transform: scale(0.95);
}

/* Floating animation for icons */
.feature-icon svg {
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-card:nth-child(1) .feature-icon svg { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon svg { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon svg { animation-delay: 1s; }
.feature-card:nth-child(4) .feature-icon svg { animation-delay: 1.5s; }
.feature-card:nth-child(5) .feature-icon svg { animation-delay: 2s; }
.feature-card:nth-child(6) .feature-icon svg { animation-delay: 2.5s; }

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

.icon-crystal, .icon-world, .icon-community, .icon-pvp, .icon-economy, .icon-events, .icon-map, .icon-survival, .icon-protection, .icon-clans {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    position: relative;
    transition: transform 0.3s ease;
}

.icon-map::before {
    content: '🗺️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    transition: all 0.3s ease;
}

.icon-survival::before {
    content: '⛏️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    transition: all 0.3s ease;
}

.icon-protection::before {
    content: '🛡️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    transition: all 0.3s ease;
}

.icon-clans::before {
    content: '👥';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    transition: all 0.3s ease;
}

.icon-pvp::before {
    content: '⚔️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    transition: all 0.3s ease;
}

.icon-economy::before {
    content: '💰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    transition: all 0.3s ease;
}

.icon-events::before {
    content: '🎉';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    transition: all 0.3s ease;
}

/* Hover animations for feature cards */
.feature-card:hover .icon-map::before {
    transform: translate(-50%, -50%) scale(1.2) rotate(5deg);
}

.feature-card:hover .icon-survival::before {
    transform: translate(-50%, -50%) scale(1.2) rotate(-10deg);
}

.feature-card:hover .icon-protection::before {
    transform: translate(-50%, -50%) scale(1.2) translateY(-2px);
}

.feature-card:hover .icon-clans::before {
    transform: translate(-50%, -50%) scale(1.2);
}

.feature-card:hover .icon-pvp::before {
    transform: translate(-50%, -50%) scale(1.2) rotate(15deg);
}

.feature-card:hover .icon-economy::before {
    transform: translate(-50%, -50%) scale(1.2) translateY(-3px);
}

.feature-card:hover .icon-events::before {
    transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
}

/* Click animation */
.feature-card:active .feature-icon {
    transform: scale(0.95);
}

.feature-card:active .feature-icon::before {
    transform: translate(-50%, -50%) scale(0.9);
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-purple);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Community Section */
.community {
    padding: 100px 0;
    background: rgba(74, 14, 78, 0.1);
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.community-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.community-img {
    width: 70%;
    border-radius: 110px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 20px rgba(153, 102, 204, 0.3));
}

/* Join Section */
.join {
    padding: 100px 0;
    background: #0a0a0a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="0.5" fill="%23fff" opacity="0.8"/><circle cx="80" cy="40" r="0.3" fill="%23fff" opacity="0.6"/><circle cx="40" cy="80" r="0.4" fill="%23fff" opacity="0.7"/><circle cx="90" cy="90" r="0.2" fill="%23fff" opacity="0.5"/><circle cx="10" cy="60" r="0.3" fill="%23fff" opacity="0.6"/><circle cx="60" cy="30" r="0.4" fill="%23fff" opacity="0.7"/><circle cx="30" cy="70" r="0.2" fill="%23fff" opacity="0.5"/></svg>') repeat;
    background-size: 300px 300px;
    z-index: -2;
}

.join::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="0.2" fill="%239966CC" opacity="0.8"/><circle cx="75" cy="75" r="0.3" fill="%23CC99FF" opacity="0.6"/><circle cx="50" cy="10" r="0.2" fill="%23B19CD9" opacity="0.7"/><circle cx="15" cy="85" r="0.25" fill="%239966CC" opacity="0.5"/><circle cx="85" cy="15" r="0.2" fill="%23CC99FF" opacity="0.6"/></svg>') repeat;
    background-size: 400px 400px;
    animation: move-twink-back 250s linear infinite;
    z-index: -1;
}

.join-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.join-text {
    flex: 1 !important;
    text-align: left !important;
    padding-top: 0 !important;
    margin-right: 1rem !important;
    margin-top: 0 !important;
    transform: translateY(-15px) !important;
}

@media (max-width: 768px) {
    .join-text {
        text-align: center !important;
        margin-right: 0 !important;
        transform: none !important;
    }
}

.join-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-crystal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.join-text p {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.server-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 0 !important;
    display: inline-block;
    border: 1px solid rgba(153, 102, 204, 0.3);
    position: relative;
    z-index: 1;
    flex-shrink: 0 !important;
}

.server-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 0;
}

.server-ip, .server-port, .server-version {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
}

.ip-label, .port-label, .version-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    min-width: 120px;
    text-align: left;
}

.ip-address, .port-number, .version-number {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    flex: 1;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.ip-address:hover, .port-number:hover, .version-number:hover {
    background: rgba(153, 102, 204, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(153, 102, 204, 0.2);
}

.ip-address {
    font-size: 1.5rem;
}

.port-number, .version-number {
    font-size: 1.3rem;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Platforms Section */
.platforms {
    padding: 80px 0;
    background: rgba(74, 14, 78, 0.1);
}

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

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(153, 102, 204, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(153, 102, 204, 0.1), transparent);
    transition: left 0.5s;
}

.platform-card:hover::before {
    left: 100%;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(153, 102, 204, 0.2);
    border-color: var(--accent-purple);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
}

.icon-shop, .icon-vk, .icon-telegram {
    width: 32px;
    height: 32px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.platform-card:hover .icon-shop,
.platform-card:hover .icon-vk,
.platform-card:hover .icon-telegram {
    transform: scale(1.1) rotate(5deg);
}

.platform-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-purple);
}

.platform-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 1rem 0;
    border-top: 1px solid rgba(153, 102, 204, 0.2);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.footer-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-name {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--accent-purple);
    font-size: 1.2rem;
}

.logo-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.footer-slogan {
    font-size: 0.95rem;
    color: var(--accent-purple);
    font-weight: 400;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.footer-links a:hover {
    color: var(--accent-purple);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation Mobile */
    .nav-container {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(74, 14, 78, 0.95) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="0.2" fill="%239966CC" opacity="0.6"/><circle cx="75" cy="75" r="0.3" fill="%23CC99FF" opacity="0.4"/><circle cx="50" cy="10" r="0.2" fill="%23B19CD9" opacity="0.5"/></svg>') repeat;
        background-size: 200px 200px;
        animation: move-twink-back 100s linear infinite;
        z-index: -1;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.8rem 0;
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    
    .nav-link {
        font-size: 1.4rem;
        padding: 1.2rem 2.5rem;
        display: block;
        text-align: center;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(153, 102, 204, 0.2);
        margin: 0.3rem 0;
        min-width: 200px;
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(153, 102, 204, 0.2), transparent);
        transition: left 0.5s;
    }
    
    .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-link:hover {
        background: rgba(153, 102, 204, 0.1);
        border-color: var(--accent-purple);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(153, 102, 204, 0.2);
    }
    
    .join-btn {
        margin-top: 2rem;
        padding: 1.2rem 2.5rem;
        background: var(--gradient-primary) !important;
        border: none !important;
        box-shadow: 0 10px 30px rgba(153, 102, 204, 0.4);
    }
    
    .join-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(153, 102, 204, 0.5);
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 80px 15px 30px;
        min-height: 100vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        max-width: 100%;
    }
    
    .title-line {
        font-size: 1rem;
    }
    
    .title-main {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .title-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Crystal Mobile */
    .crystal-container {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .crystal-1 {
        width: 40px;
        height: 80px;
        top: 25%;
        left: 40%;
    }
    
    .crystal-2 {
        width: 50px;
        height: 100px;
        top: 20%;
        right: 26%;
    }
    
    .crystal-3 {
        width: 35px;
        height: 70px;
        bottom: 40%;
        left: 30%;
        top: 40%;
    }
    
    .crystal-4 {
        width: 45px;
        height: 90px;
        bottom: 35%;
        right: 35%;
    }
    
    /* Sections Mobile */
    .features, .community, .join {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .icon-crystal, .icon-world, .icon-community, .icon-pvp, .icon-economy, .icon-events, .icon-map, .icon-survival, .icon-protection, .icon-clans {
        width: 30px;
        height: 30px;
    }
    
    .icon-map::before, .icon-survival::before, .icon-protection::before, .icon-clans::before, .icon-pvp::before, .icon-economy::before, .icon-events::before {
        font-size: 22px;
    }
    
    /* Community Mobile */
    .community-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .community-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .community-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Join Mobile */
    .join-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .join-text {
        text-align: center;
    }
    
    .join-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .join-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .server-info {
        padding: 1.5rem;
        margin: 0 15px 2rem;
        width: calc(100% - 30px);
        box-sizing: border-box;
    }
    
    .server-details {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    
    .server-ip, .server-port, .server-version {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
        width: 100%;
        max-width: 300px;
    }
    
    .ip-label, .port-label, .version-label {
        min-width: 100px;
        text-align: left;
    }
    
    .ip-address {
        font-size: 1.2rem;
        padding: 0.7rem 1rem;
        word-break: break-all;
        text-align: center;
    }
    
    .port-number, .version-number {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }
    
    .copy-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Platforms Mobile */
    .platforms {
        padding: 60px 0;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .platform-card {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .platform-card h3 {
        font-size: 1.3rem;
    }
    
    .platform-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .icon-shop, .icon-vk, .icon-telegram {
        width: 24px;
        height: 24px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 1rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom {
        font-size: 0.9rem;
        padding-top: 1.5rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .title-main {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .crystal-container {
        width: 200px;
        height: 200px;
    }
    
    .crystal-1, .crystal-2, .crystal-3, .crystal-4 {
        width: 30px;
        height: 60px;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.3rem;
    }
    
    .feature-card {
        margin: 0 5px;
        padding: 1.2rem;
    }
    
    .server-info {
        margin: 0 10px 2rem;
        width: calc(100% - 20px);
        padding: 1.2rem;
    }
    
    .ip-address {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
    }
    
    .port-number, .version-number {
        font-size: 1rem;
        padding: 0.5rem 0.8rem;
    }
    
    .stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
}