/* Import Font Chakra Petch dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&display=swap');

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    border-left: none;
    border-right: none;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    border: none;
    outline: none;
}

/* Page Background */
body {
    background-color: #0c0026;
    background-image: none;
    border: none;
    outline: none;
}

/* Remove borders from all elements */
header, nav, div, section, article, aside, footer {
    border: none;
    outline: none;
    border-left: none;
    border-right: none;
}

/* Remove borders from navigation */
.nav-button, .nav-container, .main-header {
    border: none;
    outline: none;
    border-left: none;
    border-right: none;
}

/* Statistic Server Section */
.stats-section {
    width: 100%;
    padding: 80px 20px;
    position: relative;
    background: linear-gradient(180deg, rgba(12, 0, 38, 0.8) 0%, rgba(12, 0, 38, 0.95) 100%);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.stats-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #01c6f3;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 20px 0;
    text-shadow: 0 0 20px rgba(1, 198, 243, 0.5);
}

.stats-divider {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #01c6f3, transparent);
    margin: 0 auto;
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(1, 198, 243, 0.1) 0%, rgba(18, 139, 209, 0.1) 100%);
    border: 1px solid rgba(1, 198, 243, 0.3);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(1, 198, 243, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(1, 198, 243, 0.3);
    border-color: rgba(1, 198, 243, 0.5);
}

.stat-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(1, 198, 243, 0.2) 0%, rgba(18, 139, 209, 0.2) 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 40px;
    height: 40px;
    color: #01c6f3;
}

.stat-info {
    flex: 1;
}

.stat-label {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.stat-value {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #01c6f3;
    margin: 0;
    text-shadow: 0 0 10px rgba(1, 198, 243, 0.5);
}

/* Responsive Design for Stats Section */
@media (max-width: 992px) {
    .stats-section {
        padding: 60px 20px;
    }

    .stats-title {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon svg {
        width: 30px;
        height: 30px;
    }

    .stat-label {
        font-size: 16px;
    }

    .stat-value {
        font-size: 28px;
    }
}

/* Hero Section */
.hero-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* Hero Content (Left Side) */
.hero-content {
    flex: 1;
    max-width: 600px;
}

.project-name {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #01c6f3;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 20px 0;
    text-shadow: 0 0 20px rgba(1, 198, 243, 0.5);
    line-height: 1.2;
}

.project-slogan {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Hero Logo (Right Side) */
.hero-logo {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-logo img {
    max-width: 500px;
    width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(1, 198, 243, 0.5));
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        max-width: 100%;
    }

    .project-name {
        font-size: 48px;
    }

    .project-slogan {
        font-size: 24px;
    }

    .hero-logo {
        justify-content: center;
    }

    .hero-logo img {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 15px 30px;
    }

    .project-name {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .project-slogan {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .hero-logo img {
        max-width: 250px;
    }
}
