.donation-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.donation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.section-desc {
    text-align: center;
    color: #ccc;
    margin-bottom: 50px;
    font-size: 1.2em;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.donation-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.donation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.donation-card.featured {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.donation-header {
    padding: 30px 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(45deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}

.medal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.medal-icon i {
    font-size: 30px;
}

.bronze .medal-icon i { color: #cd7f32; }
.silver .medal-icon i { color: #c0c0c0; }
.gold .medal-icon i { color: #ffd700; }

.donation-header h3 {
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.price {
    font-size: 1.5em;
    color: #fff;
    font-weight: bold;
}

.popular-tag {
    position: absolute;
    top: 10px;
    right: -30px;
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    color: #000;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8em;
    font-weight: bold;
}

.donation-content {
    padding: 30px 20px;
}

.donation-content h4 {
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.donation-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.donation-content ul li {
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.donation-content ul li i {
    color: rgba(0, 255, 255, 0.8);
    width: 20px;
}

.bonus-tag {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.donate-btn {
    display: block;
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    color: #000;
    text-align: center;
    padding: 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.donation-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5em;
    color: #00ffff;
    margin-bottom: 20px;
}

.info-card h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.payment-icons i {
    font-size: 2em;
    color: #fff;
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: #00ffff;
}

.security ul {
    list-style: none;
    padding: 0;
}

.security ul li {
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.security ul li i {
    font-size: 1em;
    margin: 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.step {
    text-align: center;
    color: #fff;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    color: #000;
    border-radius: 50%;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .donation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donation-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .donation-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-card.featured {
        transform: none;
    }
    
    .section-title {
        font-size: 2em;
    }
}

/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
}

body {
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 1s ease-in-out 2s forwards;
}

.loading-text {
    color: #fff;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.donation-section, .game-guide-section, .download-section {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: none;
}

.section-title {
    text-align: center;
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: none;
}

.donation-card, .guide-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.donation-card:hover, .guide-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.donation-card.featured {
    transform: scale(1.02);
    box-shadow: none;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.donation-header {
    padding: 30px 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(45deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}

.medal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
}

.nav-links a:hover::before {
    width: 200px;
    height: 200px;
}

.nav-links a.active {
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    color: #000;
    font-weight: bold;
}

.nav-icons {
    display: flex;
    gap: 1rem;
}

.nav-icons .icon {
    color: #fff;
    font-size: 1.2em;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-icons .icon:hover {
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    color: #000;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.hero img {
    margin: 2rem 0;
    transition: transform 0.3s ease;
}

.hero img:hover {
    transform: scale(1.05);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 2rem;
    color: #ccc;
}

.start-button {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.2em;
    text-decoration: none;
    color: #000;
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.start-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
}

.start-button:hover::before {
    width: 300px;
    height: 300px;
}

.start-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links span {
        display: none;
    }

    .nav-links a {
        padding: 0.5rem;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero img {
        width: 200px;
        height: auto;
    }

    .start-button {
        padding: 0.8rem 2rem;
        font-size: 1em;
    }
}

/* Server Status Section */
.game-guide-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.guide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.guide-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.guide-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-icon i {
    font-size: 40px;
    color: #00ffff;
}

.guide-card h3 {
    color: #fff;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.guide-card p {
    color: #ccc;
    margin-bottom: 25px;
}

.guide-btn {
    display: inline-block;
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.guide-btn:hover {
    transform: scale(1.05);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.server-status h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #00ff9d;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.status-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.3);
}

.status-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ff9d20, #00ffff20);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.status-icon i {
    font-size: 24px;
    color: #00ffff;
}

.status-details h3 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 15px;
}

.status-badge.online {
    background: linear-gradient(45deg, #00ff9d20, #00ffff20);
    color: #00ff9d;
    border: 1px solid #00ff9d50;
}

.server-stats, .player-stats, .rating-count, .version-date {
    color: #aaa;
    font-size: 0.9em;
    display: flex;
    gap: 15px;
}

.player-count, .version-number {
    font-size: 2em;
    color: #fff;
    font-weight: bold;
    margin: 10px 0;
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 10px 0;
    position: relative;
}

.stat-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--percentage, 82%);
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    border-radius: 2px;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.2em;
    margin: 10px 0;
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.download-header {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
}

.download-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.info-item i {
    color: #00ffff;
}

.req-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.req-tab {
    background: none;
    border: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.req-tab::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.req-tab.active::after {
    transform: scaleX(1);
}

.req-panel {
    display: none;
}

.req-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.req-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.req-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.req-item i {
    font-size: 2em;
    color: #00ffff;
    margin-bottom: 15px;
}

.req-item h4 {
    color: #fff;
    margin-bottom: 10px;
}

.req-item p {
    color: #aaa;
}

.download-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn.primary {
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    color: #000;
}

.download-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

.btn-content {
    display: flex;
    flex-direction: column;
}

.btn-content small {
    opacity: 0.8;
    font-size: 0.9em;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 157, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: 1fr;
    }

    .download-info {
        flex-direction: column;
        align-items: center;
    }

    .req-grid {
        grid-template-columns: 1fr;
    }

    .download-btn {
        padding: 15px 20px;
    }
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00ffff;
}

.nav-links li a.active {
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    color: #000;
}

.nav-links li a i {
    font-size: 1.2rem;
}

.nav-icons {
    display: flex;
    gap: 1rem;
}

.nav-icons .icon {
    color: #fff;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-icons .icon:hover {
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    color: #000;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.hero img {
    margin: 2rem 0;
    transition: transform 0.3s ease;
}

.hero img:hover {
    transform: scale(1.05);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 2rem;
    color: #ccc;
}

.start-button {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.2em;
    text-decoration: none;
    color: #000;
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.start-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
}

.start-button:hover::before {
    width: 300px;
    height: 300px;
}

.start-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links span {
        display: none;
    }

    .nav-links a {
        padding: 0.5rem;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero img {
        width: 200px;
        height: auto;
    }

    .start-button {
        padding: 0.8rem 2rem;
        font-size: 1em;
    }
}

/* Server Status Section */
.game-guide-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.guide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.guide-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.guide-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-icon i {
    font-size: 40px;
    color: #00ffff;
}

.guide-card h3 {
    color: #fff;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.guide-card p {
    color: #ccc;
    margin-bottom: 25px;
}

.guide-btn {
    display: inline-block;
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.guide-btn:hover {
    transform: scale(1.05);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.server-status h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #00ff9d;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.status-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.3);
}

.status-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ff9d20, #00ffff20);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.status-icon i {
    font-size: 24px;
    color: #00ffff;
}

.status-details h3 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 15px;
}

.status-badge.online {
    background: linear-gradient(45deg, #00ff9d20, #00ffff20);
    color: #00ff9d;
    border: 1px solid #00ff9d50;
}

.server-stats, .player-stats, .rating-count, .version-date {
    color: #aaa;
    font-size: 0.9em;
    display: flex;
    gap: 15px;
}

.player-count, .version-number {
    font-size: 2em;
    color: #fff;
    font-weight: bold;
    margin: 10px 0;
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 10px 0;
    position: relative;
}

.stat-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--percentage, 82%);
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    border-radius: 2px;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.2em;
    margin: 10px 0;
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.download-header {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
}

.download-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.info-item i {
    color: #00ffff;
}

.req-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.req-tab {
    background: none;
    border: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.req-tab::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.req-tab.active::after {
    transform: scaleX(1);
}

.req-panel {
    display: none;
}

.req-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.req-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.req-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.req-item i {
    font-size: 2em;
    color: #00ffff;
    margin-bottom: 15px;
}

.req-item h4 {
    color: #fff;
    margin-bottom: 10px;
}

.req-item p {
    color: #aaa;
}

.download-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn.primary {
    background: linear-gradient(45deg, #00ff9d, #00ffff);
    color: #000;
}

.download-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

.btn-content {
    display: flex;
    flex-direction: column;
}

.btn-content small {
    opacity: 0.8;
    font-size: 0.9em;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 157, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: 1fr;
    }

    .download-info {
        flex-direction: column;
        align-items: center;
    }

    .req-grid {
        grid-template-columns: 1fr;
    }

    .download-btn {
        padding: 15px 20px;
    }
}