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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #000000, #0a0a0a, #1a0a1a, #0a1a0a, #0a0a1a);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    z-index: -1;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #1a1a1a;
    z-index: 1000;
    padding: 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    animation: float 3s ease-in-out infinite;
}

.nav-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #00d4ff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00d4ff;
    text-shadow: 0 0 10px #00d4ff;
}

.server-ip {
    font-family: 'Courier New', monospace;
    background: #000000;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #1a1a1a;
    font-size: 0.9rem;
}

.ip-text {
    color: #39ff14;
    font-weight: bold;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 2rem;
}

.main-logo {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: float 3s ease-in-out infinite;
}

.server-name {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00d4ff, #39ff14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Player Counter */
.player-counter {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 400px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
}

.counter-title {
    font-size: 1.5rem;
    color: #39ff14;
    margin-bottom: 1rem;
}

.counter-value {
    font-size: 3rem;
    font-weight: 900;
    color: #39ff14;
    text-shadow: 0 0 20px #39ff14;
}

/* Description Section */
.description {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.description-card {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.description-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #00d4ff, #39ff14, #39ff14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
}

.description-text {
    margin-bottom: 1rem;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.action-card {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
    border-color: #00d4ff;
}

.action-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.action-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.action-desc {
    color: #cccccc;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #39ff14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

/* Shop Description */
.shop-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.shop-description p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1rem;
}

.warning-text {
    color: #ff6b6b;
    font-weight: 600;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 10px;
    padding: 1rem;
}

/* Package Cards */
.coin-packages,
.rank-packages,
.key-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.package-card {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

.package-card.popular {
    border-color: #39ff14;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
}

.package-card.bundle {
    border-color: #9d4edd;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #39ff14, #00d4ff);
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.package-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 900;
    color: #39ff14;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px #39ff14;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.package-features li {
    color: #cccccc;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Rank Colors */
.rank-blaze { color: #00d4ff; }
.rank-samurai { color: #39ff14; }
.rank-champion { color: #ffdd59; }
.rank-god { color: #ff6b6b; }

/* Key Colors */
.key-common { color: #00d4ff; }
.key-legend { color: #39ff14; }
.key-heart { color: #ff6b6b; }
.key-hex { color: #9d4edd; }
.key-overlord { color: #ffdd59; }
.key-elite { color: #39ff14; }

/* Media Requirements */
.media-ranks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.rank-card {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.rank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

.rank-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.rank-name {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.rank-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.requirements-list,
.perks-list {
    list-style: none;
    padding: 0;
}

.requirements-list li,
.perks-list li {
    color: #cccccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.requirements-list li:last-child,
.perks-list li:last-child {
    border-bottom: none;
}

/* Shop Info */
.shop-categories {
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.category-item {
    text-align: center;
    padding: 1.5rem;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-name:nth-child(1) { color: #00d4ff; }
.category-name:nth-child(2) { color: #39ff14; }
.category-name:nth-child(3) { color: #ffdd59; }
.category-name:nth-child(4) { color: #9d4edd; }

.category-desc {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Security Info */
.security-info {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.security-card {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.security-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.security-title {
    font-size: 2rem;
    font-weight: 700;
    color: #39ff14;
    margin-bottom: 1rem;
}

.security-text {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.security-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.security-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-check {
    color: #39ff14;
    font-weight: 700;
}

/* Buttons */
.buy-section,
.apply-section,
.discord-section {
    text-align: center;
    padding: 2rem;
    margin: 3rem 0;
}

.buy-btn,
.apply-btn {
    background: linear-gradient(45deg, #00d4ff, #39ff14);
    color: #000;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: pulse 2s infinite;
}

.buy-btn:hover,
.apply-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    animation: none;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid #1a1a1a;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.footer-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d4ff;
}

.footer-text {
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-ip {
    color: #39ff14;
    font-family: 'Courier New', monospace;
    font-weight: 700;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

.neon-text {
    text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor;
}

.pulse-text {
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14, 0 0 15px #39ff14; }
    100% { text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 30px #39ff14; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links,
    .server-ip {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .main-content {
        padding: 1rem 0;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .main-logo {
        width: 100px;
        height: 100px;
    }
    
    .description-card,
    .rank-card,
    .security-card {
        padding: 2rem;
    }
    
    .description-title {
        font-size: 2rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .coin-packages,
    .rank-packages,
    .key-packages {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .media-ranks {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }
    
    .security-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .server-name {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}