/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a1a 0%, #191970 50%, #1e1e3f 100%);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #4169e1;
}

.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;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4169e1;
    text-shadow: 0 0 10px #4169e1;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    filter: drop-shadow(0 0 10px rgba(65, 105, 225, 0.8));
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #4169e1;
    text-shadow: 0 0 5px #4169e1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4169e1;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23333" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    padding: 2rem;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.glitch {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #4169e1;
    text-shadow: 
        0 0 5px #4169e1,
        0 0 10px #4169e1,
        0 0 15px #4169e1,
        0 0 20px #4169e1;
    animation: glitch 2s infinite;
    margin-bottom: 1rem;
}

@keyframes glitch {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-2px) translateY(1px); }
    20% { transform: translateX(2px) translateY(-1px); }
    30% { transform: translateX(-1px) translateY(2px); }
    40% { transform: translateX(1px) translateY(-2px); }
    50% { transform: translateX(-2px) translateY(1px); }
    60% { transform: translateX(2px) translateY(-1px); }
    70% { transform: translateX(-1px) translateY(2px); }
    80% { transform: translateX(1px) translateY(-2px); }
    90% { transform: translateX(-2px) translateY(1px); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.server-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(65, 105, 225, 0.15);
    padding: 1.2rem 2rem;
    border-radius: 30px;
    border: 2px solid #4169e1;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(65, 105, 225, 0.3);
    font-size: 1.1rem;
    font-weight: 600;
}

.status-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ff4444;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.status-dot.online {
    background: #4169e1;
    box-shadow: 0 0 15px rgba(65, 105, 225, 0.8);
}

@keyframes pulse {
    0% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1);
    }
    100% { 
        opacity: 1; 
        transform: scale(1);
    }
}

.player-count {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.2), rgba(65, 105, 225, 0.1));
    padding: 1.5rem 2.5rem;
    border-radius: 30px;
    border: 2px solid #4169e1;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4);
    font-size: 1.3rem;
    font-weight: 700;
    color: #4169e1;
    text-shadow: 0 0 10px rgba(65, 105, 225, 0.5);
    position: relative;
    overflow: hidden;
}

.player-count::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(65, 105, 225, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.player-count i {
    font-size: 1.5rem;
    color: #4169e1;
    filter: drop-shadow(0 0 5px rgba(65, 105, 225, 0.7));
}

.player-count-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #4169e1;
    text-shadow: 0 0 15px rgba(65, 105, 225, 0.8);
    margin: 0 0.5rem;
}

.server-details {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.detail-item {
    background: rgba(65, 105, 225, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    border: 1px solid #4169e1;
    backdrop-filter: blur(5px);
}

.detail-label {
    color: #cccccc;
    font-weight: 500;
    margin-right: 0.5rem;
}

.detail-value {
    color: #4169e1;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(65, 105, 225, 0.6);
}

.server-ip {
    margin-bottom: 2rem;
}

.ip-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 2px solid #4169e1;
    flex-wrap: wrap;
}

.ip-address {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #4169e1;
    font-weight: 700;
}

.copy-btn {
    background: #4169e1;
    color: #fff;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #2e4bc6;
    transform: scale(1.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, #4169e1, #2e4bc6);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(65, 105, 225, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4169e1;
    border-color: #4169e1;
}

.btn-secondary:hover {
    background: #4169e1;
    color: #fff;
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4169e1;
    font-family: 'Orbitron', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Server Stats */
.server-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #4169e1;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(65, 105, 225, 0.2);
    border-color: #4169e1;
}

.stat-icon {
    font-size: 3rem;
    color: #4169e1;
    margin-bottom: 1rem;
}

.stat-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #4169e1;
}

/* Ranks Section */
.ranks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.rank-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.rank-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #cd7f32, #b8860b);
}

.rank-card.bronze::before {
    background: linear-gradient(90deg, #cd7f32, #b8860b);
}

.rank-card.silver::before {
    background: linear-gradient(90deg, #c0c0c0, #e5e5e5);
}

.rank-card.gold::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.rank-card.diamond::before {
    background: linear-gradient(90deg, #b9f2ff, #00d4ff);
}

.rank-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(65, 105, 225, 0.2);
}

.popular {
    border: 2px solid #4169e1;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #4169e1;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.rank-header {
    margin-bottom: 2rem;
}

.rank-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4169e1;
}

.rank-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #4169e1;
    font-family: 'Orbitron', monospace;
}

.rank-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.rank-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rank-features i {
    color: #4169e1;
}

.buy-btn {
    background: linear-gradient(45deg, #4169e1, #2e4bc6);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(65, 105, 225, 0.3);
}

/* Items Section */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.item-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #4169e1;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(65, 105, 225, 0.2);
}

.item-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(65, 105, 225, 0.6));
    transition: all 0.3s ease;
}

.item-icon i {
    color: #4169e1;
    filter: drop-shadow(0 0 5px rgba(65, 105, 225, 0.7));
    transition: all 0.3s ease;
}

.item-card:hover .item-icon img,
.item-card:hover .item-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(65, 105, 225, 0.9));
}

.item-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4169e1;
}

.item-card p {
    margin-bottom: 1rem;
    color: #cccccc;
}

.item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4169e1;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #4169e1;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(65, 105, 225, 0.2);
}

.contact-card i {
    font-size: 3rem;
    color: #4169e1;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4169e1;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(45deg, #4169e1, #2e4bc6);
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(65, 105, 225, 0.3);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0 1rem;
    border-top: 2px solid #4169e1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: #4169e1;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4169e1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #cccccc;
}

/* Rules Section */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.rule-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #4169e1;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4169e1, #5a7ce8);
}

.rule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(65, 105, 225, 0.3);
    border-color: #5a7ce8;
}

.rule-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rule-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4169e1, #5a7ce8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    font-family: 'Orbitron', monospace;
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.4);
}

.rule-icon {
    width: 50px;
    height: 50px;
    background: rgba(65, 105, 225, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #4169e1;
}

.rule-icon i {
    font-size: 1.5rem;
    color: #4169e1;
}

.rule-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #4169e1;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.rule-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .glitch {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .server-status {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ip-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rule-card {
        padding: 1.5rem;
    }
    
    .rule-header {
        flex-direction: column;
        gap: 0.5rem;
    }
} 