* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 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;
    padding: 20px 0;
    border-bottom: 1px solid rgba(200, 30, 30, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #c81e1e;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #c81e1e;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language {
    font-size: 24px;
}

.flag {
    width: 24px;
    height: 16px;
}

.btn-login {
    background: linear-gradient(135deg, #c81e1e 0%, #8b0000 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 30, 30, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(200, 30, 30, 0.1);
    z-index: 0;
    white-space: nowrap;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.era-text {
    color: #c81e1e;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #b0b0b0;
}

.highlight {
    color: #c81e1e;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 18px 36px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #c81e1e 0%, #8b0000 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 30, 30, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(200, 30, 30, 0.5);
}

.btn-secondary:hover {
    background: rgba(200, 30, 30, 0.1);
    border-color: #c81e1e;
}

.play-icon {
    font-size: 12px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.character-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(200, 30, 30, 0.3));
}

.hero-footer {
    margin-top: 100px;
    text-align: center;
}

.hero-footer-text {
    font-size: 12px;
    color: #c81e1e;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
}

.scroll-icon {
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Content Section */
.content-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0505 100%);
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title-white {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #c81e1e;
    font-weight: 700;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.video-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.video-preview {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(200, 30, 30, 0.3);
    transition: transform 0.3s, border-color 0.3s;
}

.video-preview:hover {
    transform: scale(1.05);
    border-color: #c81e1e;
}

.video-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(200, 30, 30, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #c81e1e;
}

.main-video {
    transform: scale(1.1);
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(200, 30, 30, 0.05) 0%, rgba(139, 0, 0, 0.05) 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(200, 30, 30, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #c81e1e;
    background: linear-gradient(135deg, rgba(200, 30, 30, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #c81e1e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
}

.section-footer {
    margin-top: 100px;
    text-align: center;
}

.section-footer-text {
    font-size: 12px;
    color: #c81e1e;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Servers Section */
.servers-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
}

/* Shop Section */
.shop-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a0505 0%, #0a0a0a 100%);
}

.shop-categories {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.category-btn {
    background: rgba(200, 30, 30, 0.1);
    color: white;
    border: 1px solid rgba(200, 30, 30, 0.3);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, #c81e1e 0%, #8b0000 100%);
    border-color: #c81e1e;
    transform: translateY(-2px);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.shop-item {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(40, 10, 10, 0.9) 100%);
    border: 1px solid rgba(200, 30, 30, 0.3);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.shop-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(200, 30, 30, 0.3);
    border-color: #c81e1e;
}

.shop-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.shop-item-icon {
    font-size: 48px;
}

.shop-item-badge {
    background: linear-gradient(135deg, #c81e1e 0%, #8b0000 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.shop-item-badge.premium {
    background: linear-gradient(135deg, #ff4444 0%, #c81e1e 100%);
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

.shop-item-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
    text-transform: uppercase;
}

.shop-item-description {
    font-size: 13px;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.shop-item-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.shop-item-features li {
    font-size: 13px;
    color: #d0d0d0;
    margin-bottom: 10px;
    padding-left: 5px;
}

.shop-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(200, 30, 30, 0.2);
}

.shop-item-price {
    font-size: 28px;
    font-weight: 900;
    color: #c81e1e;
}

.btn-buy {
    background: linear-gradient(135deg, #c81e1e 0%, #8b0000 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-buy:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(200, 30, 30, 0.5);
}

.shop-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.info-box {
    background: rgba(200, 30, 30, 0.05);
    border: 1px solid rgba(200, 30, 30, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.info-box h4 {
    font-size: 18px;
    font-weight: 800;
    color: #c81e1e;
    margin-bottom: 12px;
}

.info-box p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

.servers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.server-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(200, 30, 30, 0.1);
    color: white;
    border: 1px solid rgba(200, 30, 30, 0.3);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #c81e1e 0%, #8b0000 100%);
    border-color: #c81e1e;
}

.online-counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.online-label {
    font-size: 14px;
    color: #b0b0b0;
}

.online-count {
    font-size: 24px;
    font-weight: 900;
    color: #c81e1e;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.server-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(40, 10, 10, 0.9) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(200, 30, 30, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 30, 30, 0.3);
    border-color: #c81e1e;
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.server-name {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.server-online {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c81e1e;
    font-weight: 700;
}

.server-progress {
    width: 100%;
    height: 8px;
    background: rgba(200, 30, 30, 0.1);
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #c81e1e 0%, #ff4444 100%);
    border-radius: 4px;
    transition: width 0.5s;
}

.server-connect {
    width: 100%;
    background: rgba(200, 30, 30, 0.15);
    color: #ffffff;
    border: 1px solid rgba(200, 30, 30, 0.3);
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Courier New', monospace;
}

.server-connect:hover {
    background: rgba(200, 30, 30, 0.25);
    border-color: #c81e1e;
}

.btn-play {
    width: 100%;
    background: linear-gradient(135deg, #c81e1e 0%, #8b0000 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-play:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(200, 30, 30, 0.4);
}

/* Support Section */
.support-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 100%);
}

.support-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.support-image {
    flex: 0 0 400px;
}

.support-char {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(200, 30, 30, 0.3));
}

.support-placeholder {
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, rgba(200, 30, 30, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    border: 2px solid rgba(200, 30, 30, 0.3);
}

.support-text {
    flex: 1;
}

.support-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.support-subtitle {
    font-size: 20px;
    color: #c81e1e;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.support-description {
    margin-bottom: 40px;
}

.support-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.highlight-red {
    color: #c81e1e;
    font-weight: 700;
}

.support-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Community Section */
.community-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.community-card {
    background: linear-gradient(135deg, rgba(200, 30, 30, 0.05) 0%, rgba(139, 0, 0, 0.05) 100%);
    padding: 60px 40px;
    border-radius: 12px;
    border: 1px solid rgba(200, 30, 30, 0.3);
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s, border-color 0.3s;
}

.community-card:hover {
    transform: translateY(-10px);
    border-color: #c81e1e;
    background: linear-gradient(135deg, rgba(200, 30, 30, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
}

.community-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.community-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.community-card:hover .community-icon img {
    filter: brightness(0) saturate(100%) invert(19%) sepia(98%) saturate(4855%) hue-rotate(352deg) brightness(92%) contrast(105%);
}

.community-name {
    font-size: 24px;
    font-weight: 800;
    color: #c81e1e;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .servers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .nav {
        display: none;
    }
    
    .servers-grid,
    .features-grid,
    .community-grid,
    .shop-grid,
    .shop-info {
        grid-template-columns: 1fr;
    }
    
    .video-showcase {
        grid-template-columns: 1fr;
    }
    
    .support-content {
        flex-direction: column;
    }
    
    .support-image {
        flex: 0 0 300px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c81e1e 0%, #8b0000 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c81e1e;
}


/* Shop Page Specific Styles */
.shop-page {
    background: #0a0a0a;
}

.shop-main {
    padding-top: 100px;
    min-height: 100vh;
}

.shop-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 280px 1fr 320px;
    gap: 30px;
}

/* Left Sidebar - Server List */
.shop-sidebar {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 10, 10, 0.95) 100%);
    border: 1px solid rgba(200, 30, 30, 0.3);
    border-radius: 12px;
    padding: 25px 20px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: #c81e1e;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.server-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.server-item {
    background: rgba(200, 30, 30, 0.05);
    border: 1px solid rgba(200, 30, 30, 0.2);
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.server-item:hover,
.server-item.active {
    background: rgba(200, 30, 30, 0.15);
    border-color: #c81e1e;
    transform: translateX(5px);
}

.server-item-name {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.server-item-online {
    font-size: 11px;
    color: #c81e1e;
    font-weight: 600;
    margin-bottom: 6px;
}

.server-item-link {
    font-size: 10px;
    color: #808080;
    font-family: 'Courier New', monospace;
}

/* Center Content - Shop Items */
.shop-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 10, 10, 0.95) 100%);
    border: 1px solid rgba(200, 30, 30, 0.3);
    border-radius: 12px;
    padding: 30px;
}

.category-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-tab {
    background: rgba(200, 30, 30, 0.1);
    color: #ffffff;
    border: 1px solid rgba(200, 30, 30, 0.3);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.category-tab:hover,
.category-tab.active {
    background: linear-gradient(135deg, #c81e1e 0%, #8b0000 100%);
    border-color: #c81e1e;
    transform: translateY(-2px);
}

.shop-items-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.shop-product {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(50, 15, 15, 0.9) 100%);
    border: 1px solid rgba(200, 30, 30, 0.3);
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.shop-product:hover {
    transform: translateY(-5px);
    border-color: #c81e1e;
    box-shadow: 0 10px 25px rgba(200, 30, 30, 0.4);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(200, 30, 30, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
}

.product-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.product-image img[src*=".png"],
.product-image img[src*=".jpg"] {
    display: block;
}

.product-info {
    width: 100%;
    margin-bottom: 10px;
}

.product-name {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.product-count {
    font-size: 11px;
    color: #808080;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px;
    background: rgba(200, 30, 30, 0.15);
    border-radius: 6px;
}

.price-amount {
    font-size: 16px;
    font-weight: 800;
    color: #c81e1e;
}

.price-icon {
    font-size: 14px;
}

/* Right Sidebar - Social & Info */
.shop-right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.social-links {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 10, 10, 0.95) 100%);
    border: 1px solid rgba(200, 30, 30, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    margin-bottom: 8px;
    background: rgba(200, 30, 30, 0.05);
    border: 1px solid rgba(200, 30, 30, 0.2);
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.social-item:hover {
    background: rgba(200, 30, 30, 0.15);
    border-color: #c81e1e;
    transform: translateX(-5px);
}

.social-icon {
    font-size: 20px;
}

.league-info {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 10, 10, 0.95) 100%);
    border: 1px solid rgba(200, 30, 30, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.league-title {
    font-size: 14px;
    font-weight: 800;
    color: #c81e1e;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.4;
}

.league-details {
    font-size: 11px;
    line-height: 1.8;
    color: #b0b0b0;
}

.league-stage {
    font-size: 10px;
    color: #c81e1e;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.league-season {
    font-size: 11px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
}

.league-date {
    font-size: 11px;
    color: #808080;
    margin-bottom: 5px;
    line-height: 1.6;
}

.league-values {
    font-size: 11px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.6;
}

.main-league .league-title {
    color: #ff4444;
}

.main-league .league-stage {
    color: #ff4444;
}

/* Responsive for Shop Page */
@media (max-width: 1600px) {
    .shop-items-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1400px) {
    .shop-container {
        grid-template-columns: 250px 1fr 280px;
    }
    
    .shop-items-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .shop-container {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar,
    .shop-right-sidebar {
        position: relative;
        top: 0;
    }
    
    .shop-items-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-tabs {
        justify-content: center;
    }
}


/* Product Detail Modal */
.product-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.product-modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(40, 10, 10, 0.98) 100%);
    border: 2px solid rgba(200, 30, 30, 0.3);
    border-radius: 12px;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    position: relative;
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.product-modal-close {
    color: #999;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s;
}

.product-modal-close:hover {
    color: #c81e1e;
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.product-modal-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 30, 30, 0.05);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(200, 30, 30, 0.2);
}

.product-modal-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(200, 30, 30, 0.3));
}

.product-modal-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-modal-title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.product-modal-category {
    display: inline-block;
    background: linear-gradient(135deg, #c81e1e 0%, #8b0000 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    width: fit-content;
}

.product-modal-description {
    font-size: 16px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 30px;
    min-height: 60px;
}

.product-modal-price {
    background: rgba(200, 30, 30, 0.1);
    border: 1px solid rgba(200, 30, 30, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 16px;
    color: #b0b0b0;
    font-weight: 600;
}

.price-value {
    font-size: 36px;
    font-weight: 900;
    color: #c81e1e;
}

.product-modal-buttons {
    display: flex;
    gap: 15px;
}

.product-modal-buttons .btn {
    flex: 1;
    padding: 18px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .product-modal-content {
        margin: 10px;
        width: calc(100% - 20px);
    }
    
    .product-modal-body {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .product-modal-title {
        font-size: 24px;
    }
    
    .price-value {
        font-size: 28px;
    }
    
    .product-modal-buttons {
        flex-direction: column;
    }
}


/* Login Modal */
.login-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s;
}

.login-modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(40, 10, 10, 0.98) 100%);
    border: 2px solid rgba(200, 30, 30, 0.3);
    border-radius: 12px;
    margin: 10% auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s;
}

.login-modal-close {
    color: #999;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s;
}

.login-modal-close:hover {
    color: #c81e1e;
}

.login-modal-body {
    padding: 50px 40px 40px;
    text-align: center;
}

.login-modal-title {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.login-modal-subtitle {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.btn-steam {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #171a21 0%, #1b2838 100%);
    border: 2px solid #66c0f4;
    border-radius: 8px;
    color: #66c0f4;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-steam:hover {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 192, 244, 0.3);
}

.steam-icon {
    width: 28px;
    height: 28px;
}

.login-divider {
    margin: 30px 0;
    position: relative;
    text-align: center;
}

.login-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: rgba(200, 30, 30, 0.2);
}

.login-divider span {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(40, 10, 10, 0.98) 100%);
    padding: 0 20px;
    position: relative;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-demo {
    width: 100%;
    padding: 16px 30px;
    background: rgba(200, 30, 30, 0.1);
    border: 1px solid rgba(200, 30, 30, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
}

.btn-demo:hover {
    background: rgba(200, 30, 30, 0.2);
    border-color: #c81e1e;
    transform: translateY(-2px);
}

.login-info {
    margin-top: 30px;
    font-size: 12px;
    color: #808080;
    line-height: 1.6;
}

/* User Profile (after login) */
.user-profile {
    position: fixed;
    top: 90px;
    right: 40px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 10, 10, 0.95) 100%);
    border: 1px solid rgba(200, 30, 30, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #c81e1e;
    overflow: hidden;
    background: rgba(200, 30, 30, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.user-balance {
    font-size: 16px;
    font-weight: 800;
    color: #c81e1e;
    display: flex;
    align-items: center;
    gap: 5px;
}

.balance-icon {
    font-size: 14px;
}

.btn-logout {
    background: rgba(200, 30, 30, 0.2);
    border: 1px solid rgba(200, 30, 30, 0.3);
    color: #ff4444;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-logout:hover {
    background: rgba(200, 30, 30, 0.3);
    border-color: #ff4444;
}

/* Responsive Login Modal */
@media (max-width: 768px) {
    .login-modal-content {
        margin: 20% auto;
        width: 95%;
    }
    
    .login-modal-body {
        padding: 40px 25px 30px;
    }
    
    .login-modal-title {
        font-size: 22px;
    }
    
    .user-profile {
        top: 80px;
        right: 20px;
        padding: 15px;
        gap: 10px;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
    }
    
    .user-name {
        font-size: 12px;
    }
    
    .user-balance {
        font-size: 14px;
    }
}


/* User Profile Widget in Header */
#userProfile {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(200, 30, 30, 0.1);
    border: 1px solid rgba(200, 30, 30, 0.3);
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

#userProfile:hover {
    background: rgba(200, 30, 30, 0.2);
    border-color: #c81e1e;
}

#userAvatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #c81e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#userAvatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

#userName {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-balance {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #c81e1e;
    font-weight: 700;
}

/* User Profile Dropdown Menu */
.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(40, 10, 10, 0.98) 100%);
    border: 2px solid rgba(200, 30, 30, 0.3);
    border-radius: 8px;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-dropdown.show {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border-bottom: 1px solid rgba(200, 30, 30, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(200, 30, 30, 0.15);
    color: #c81e1e;
}

.dropdown-item-icon {
    font-size: 18px;
}

.dropdown-divider {
    height: 1px;
    background: rgba(200, 30, 30, 0.2);
    margin: 5px 0;
}


/* Dropdown Balance Section */
.dropdown-balance {
    padding: 20px;
    background: rgba(200, 30, 30, 0.05);
    border-radius: 8px 8px 0 0;
}

.balance-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.balance-label {
    font-size: 13px;
    color: #b0b0b0;
    font-weight: 600;
}

.balance-value {
    font-size: 20px;
    font-weight: 900;
    color: #c81e1e;
}

.btn-topup {
    width: 100%;
    background: linear-gradient(135deg, #c81e1e 0%, #8b0000 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.btn-topup:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 30, 30, 0.5);
}

.btn-topup span {
    font-size: 16px;
}


/* Free Rust Download Section */
.free-rust-download {
    text-align: center;
    margin: 60px 0;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #c81e1e 0%, #8b0000 100%);
    color: white;
    padding: 25px 50px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 15px 40px rgba(200, 30, 30, 0.5);
    transition: all 0.3s;
}

.btn-download:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(200, 30, 30, 0.7);
}

.installation-guide {
    max-width: 900px;
    margin: 80px auto 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.guide-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    background: linear-gradient(135deg, rgba(200, 30, 30, 0.05) 0%, rgba(139, 0, 0, 0.05) 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(200, 30, 30, 0.3);
    transition: all 0.3s;
}

.guide-step:hover {
    border-color: #c81e1e;
    background: linear-gradient(135deg, rgba(200, 30, 30, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    transform: translateX(10px);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c81e1e 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 30px rgba(200, 30, 30, 0.5);
}

.step-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-title {
    font-size: 24px;
    font-weight: 800;
    color: #c81e1e;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.step-text {
    font-size: 16px;
    line-height: 1.8;
    color: #b0b0b0;
}

.step-text strong {
    color: #ffffff;
    font-weight: 700;
}

/* Responsive for Download Section */
@media (max-width: 768px) {
    .btn-download {
        padding: 20px 35px;
        font-size: 16px;
    }
    
    .guide-step {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
        text-align: center;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin: 0 auto;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-text {
        font-size: 14px;
    }
}


/* Server Type Filter */
.server-type-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.server-type-btn {
    background: rgba(200, 30, 30, 0.1);
    border: 1px solid rgba(200, 30, 30, 0.3);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.server-type-btn:hover {
    background: rgba(200, 30, 30, 0.2);
    border-color: rgba(200, 30, 30, 0.5);
    transform: translateX(5px);
}

.server-type-btn.active {
    background: linear-gradient(135deg, #c81e1e 0%, #8b0000 100%);
    border-color: #c81e1e;
    box-shadow: 0 4px 15px rgba(200, 30, 30, 0.4);
}
