@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #6366F1;
    --secondary: #10B981;
    --accent: #F59E0B;
    --bg-dark: #0F172A;
    --bg-card: #1E293B;
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Gradient */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    z-index: -1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(79, 70, 229, 0.4));
    transition: transform 0.3s ease;
}

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

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    min-width: 220px;
    list-style: none;
    border-radius: 12px;
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 14px 20px;
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    padding-left: 28px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-discord {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(79, 70, 229, 0.5);
}

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

.hero-particles {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(79, 70, 229, 0); }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.server-status-card {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    padding: 16px 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
    justify-content: space-between;
}

.status-indicator-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #94A3B8;
    box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.2);
    animation: pulse-status 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-status {
    0%, 100% { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.1); }
}

.status-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    white-space: nowrap;
}

.status-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
    flex-shrink: 0;
}

.status-players-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    white-space: nowrap;
}

.status-players {
    font-weight: 600;
    font-size: 0.95rem;
}

.server-ip-card {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(79, 70, 229, 0.1);
    backdrop-filter: blur(20px);
    padding: 16px 32px;
    border-radius: 16px;
    border: 1px solid rgba(79, 70, 229, 0.3);
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.2);
    width: 100%;
    max-width: 500px;
    justify-content: space-between;
}

.ip-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ip-label {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.ip-address {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.25rem;
    font-family: 'Courier New', monospace;
    white-space: nowrap;
}

.btn-copy {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.2);
    color: var(--text-primary);
    border: 1px solid rgba(79, 70, 229, 0.3);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

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

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

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

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 100px 0;
}

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

.feature-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
}

.feature-card.featured {
    border-color: rgba(79, 70, 229, 0.5);
    background: rgba(79, 70, 229, 0.1);
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #F97316 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(79, 70, 229, 0.3));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.feature-link:hover {
    gap: 12px;
}

/* Stats Section */
.stats {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.2);
}

.stat-icon {
    margin-bottom: 20px;
    color: var(--primary-light);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 12px;
}

.stat-trend {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.stat-trend.positive {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    backdrop-filter: blur(20px);
    padding: 80px 60px;
    border-radius: 30px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-visual {
    flex-shrink: 0;
    position: relative;
}

.cta-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-visual svg {
    position: relative;
    z-index: 1;
    color: var(--primary-light);
    filter: drop-shadow(0 0 40px rgba(79, 70, 229, 0.6));
}

/* Copy Success */
.copy-success {
    position: fixed;
    top: 100px;
    right: 30px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    color: var(--text-primary);
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-success.show {
    opacity: 1;
}

.copy-success svg {
    color: var(--secondary);
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* News Section */
.news-section {
    padding: 60px 0 100px;
}

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

.news-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
}

.news-card.featured {
    border-color: rgba(79, 70, 229, 0.5);
    background: rgba(79, 70, 229, 0.1);
}

.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.news-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.3) 0%, rgba(16, 185, 129, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.news-icon {
    color: var(--text-primary);
    opacity: 0.8;
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.news-category {
    background: rgba(79, 70, 229, 0.2);
    color: var(--primary-light);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-category.event {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent);
}

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

.news-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link:hover {
    gap: 12px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
}

.newsletter-card {
    background: rgba(79, 70, 229, 0.1);
    backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: 24px;
    border: 1px solid rgba(79, 70, 229, 0.3);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-icon {
    margin-bottom: 24px;
    color: var(--primary-light);
}

.newsletter-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.newsletter-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.6);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
}

.newsletter-input:focus {
    border-color: var(--primary-light);
    background: rgba(15, 23, 42, 0.8);
}

.newsletter-btn {
    white-space: nowrap;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
}

.team-card.owner {
    border-color: rgba(245, 158, 11, 0.5);
}

.team-card.moderator {
    border-color: rgba(16, 185, 129, 0.5);
}

.team-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #F97316 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.team-badge.mod {
    background: linear-gradient(135deg, var(--secondary) 0%, #059669 100%);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-size: cover;
    background-position: center;
    border: 4px solid rgba(79, 70, 229, 0.3);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.3);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-role {
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.team-social {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.team-social:hover {
    background: rgba(79, 70, 229, 0.3);
    transform: translateY(-3px);
}

/* Ranked Players Section */
.ranked-section {
    padding: 80px 0;
}

.ranked-category {
    margin-bottom: 60px;
}

.ranked-category:last-child {
    margin-bottom: 0;
}

.ranked-category-header {
    text-align: center;
    margin-bottom: 30px;
}

.ranked-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.ranked-category-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.ranked-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.ranked-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-radius: 16px;
    border: 2px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    width: 140px;
    min-height: 200px;
    max-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
}

.ranked-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.ranked-card.hero {
    border-color: rgba(245, 158, 11, 0.5);
}

.ranked-card.supporter {
    border-color: rgba(16, 185, 129, 0.5);
}

.ranked-card.premium {
    border-color: rgba(79, 70, 229, 0.5);
}

.rank-icon {
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.rank-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.ranked-card.hero .rank-badge {
    background: linear-gradient(135deg, var(--accent) 0%, #F97316 100%);
    color: white;
}

.ranked-card.supporter .rank-badge {
    background: linear-gradient(135deg, var(--secondary) 0%, #059669 100%);
    color: white;
}

.ranked-card.premium .rank-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.player-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    margin: 0;
    line-height: 1.2;

    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);

    z-index: 10;
}

/* Community Stats */
.community-stats {
    padding: 80px 0;
}

/* Shop Section */
.shop-section {
    padding: 60px 0 100px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 2px solid var(--border);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.shop-card.premium-rank {
    border-color: rgba(79, 70, 229, 0.5);
}

.shop-card.supporter-rank {
    border-color: rgba(16, 185, 129, 0.5);
}

.shop-card.hero-rank {
    border-color: rgba(245, 158, 11, 0.5);
}

.shop-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, #059669 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.shop-badge.best {
    background: linear-gradient(135deg, var(--accent) 0%, #F97316 100%);
}

.shop-header {
    padding: 50px 30px 40px;
    text-align: center;
    position: relative;
}

.shop-card.premium-rank .shop-header {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.3) 0%, rgba(99, 102, 241, 0.3) 100%);
}

.shop-card.supporter-rank .shop-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.3) 100%);
}

.shop-card.hero-rank .shop-header {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(249, 115, 22, 0.3) 100%);
}

.shop-icon {
    margin-bottom: 20px;
    color: var(--text-primary);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.shop-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.shop-price {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.shop-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.shop-body {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shop-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.shop-features li {
    padding: 14px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-features li:last-child {
    border-bottom: none;
}

.shop-features li svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

.btn-shop {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(79, 70, 229, 0.5);
}

/* Info Section */
.info-section {
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 70, 229, 0.5);
}

.info-icon {
    margin-bottom: 20px;
    color: var(--primary-light);
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Crate Colors */
.shop-card.crate-starter {
    border-color: rgba(16, 185, 129, 0.5);
}

.shop-card.crate-starter .shop-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.3) 100%);
}

.shop-card.crate-epic {
    border-color: rgba(139, 92, 246, 0.5);
}

.shop-card.crate-epic .shop-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
}

.shop-card.crate-hero {
    border-color: rgba(245, 158, 11, 0.5);
}

.shop-card.crate-hero .shop-header {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(249, 115, 22, 0.3) 100%);
}

/* Upgrade Path Section */
.upgrade-path-section {
    padding: 60px 0;
}

.upgrade-path {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.upgrade-step {
    flex-shrink: 0;
}

.upgrade-rank {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--border);
    text-align: center;
    width: 180px;
    min-height: 180px;
    max-height: 180px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.upgrade-rank:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.upgrade-rank.premium {
    border-color: rgba(79, 70, 229, 0.5);
}

.upgrade-rank.supporter {
    border-color: rgba(16, 185, 129, 0.5);
}

.upgrade-rank.hero {
    border-color: rgba(245, 158, 11, 0.5);
}

.upgrade-rank .rank-icon {
    font-size: 3rem;
    margin: 0;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.upgrade-rank .rank-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    flex-shrink: 0;
}

.upgrade-rank .rank-price {
    color: var(--text-secondary);
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    flex-shrink: 0;
}

.upgrade-arrow {
    color: var(--primary-light);
    animation: pulse-arrow 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-arrow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.95); }
}

.upgrade-card {
    position: relative;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-visual {
        order: -1;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        padding: 14px 16px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }
    
    .server-status-card,
    .server-ip-card {
        flex-direction: column;
        gap: 12px;
    }
    
    .status-divider {
        width: 100%;
        height: 1px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-card {
        padding: 40px 30px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .news-grid,
    .team-grid,
    .ranked-grid,
    .shop-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .page-header {
        padding: 140px 0 60px;
    }
    
    .upgrade-path {
        flex-direction: column;
    }
    
    .upgrade-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}