@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* General Styles */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #0a111a;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header Styles */
.navbar {
    background: #101820 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.navbar-brand {
    color: #00ff88 !important;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.navbar-brand img {
    max-height: 44px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: #e0e0e0 !important;
    font-weight: 500;
    margin-right: 18px;
    position: relative;
    transition: color 0.2s;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
    color: #00ff88 !important;
}

.navbar-nav .nav-link.active::after, .navbar-nav .nav-link:hover::after {
    content: '';
    display: block;
    height: 3px;
    background: #00ff88;
    border-radius: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -6px;
}

.navbar-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00ff88;
    box-shadow: 0 0 8px #00ff8899;
    margin-left: 10px;
}

/* Main Content Styles */
main {
    min-height: 60vh;
    padding: 40px 0 0 0;
}

/* Footer Styles */
footer {
    background: #101820;
    color: #e0e0e0;
    padding: 48px 0 16px 0;
    margin-top: 48px;
}

footer h5, .footer-title {
    color: #00ff88;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-social a {
    color: #e0e0e0;
    font-size: 1.5rem;
    margin-right: 18px;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #00ff88;
}

.footer-links, .footer-games {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-games li {
    margin-bottom: 8px;
}

hr {
    border-color: #222c38;
}

/* Custom Container Styles */
.container {
    max-width: 1200px;
    padding: 0 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 32px;
    }
    .card, .section-box {
        padding: 18px 10px;
    }
    footer .row > div {
        margin-bottom: 24px;
    }
}

.card, .section-box {
    background: #18222f;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    padding: 32px 28px;
    margin-bottom: 32px;
    color: #e0e0e0;
}

h1, h2, h3, h4, h5, h6 {
    color: #00ff88;
    font-weight: 700;
}

.btn-neon {
    background: linear-gradient(90deg, #00ff88 0%, #00e0ff 100%);
    color: #101820;
    border: none;
    border-radius: 30px;
    padding: 12px 36px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 16px #00ff8899;
    transition: box-shadow 0.2s, background 0.2s;
}

.btn-neon:hover {
    box-shadow: 0 0 32px #00ff88cc, 0 0 8px #00e0ffcc;
    background: linear-gradient(90deg, #00e0ff 0%, #00ff88 100%);
    color: #101820;
}

.galeri-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,255,136,0.08);
    background: #111;
    transition: transform 0.2s, box-shadow 0.2s;
}

.galeri-img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px #00ff8899;
}

.galeri-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    max-width: 340px;
    margin: 0 auto;
}

.main-hero-bg {
    min-height: 60vh;
    width: 100%;
    background: linear-gradient(0deg, #0a111ad9 60%, #0a111aee 100%), url('../esports-bg.jpg') center center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}
@media (max-width: 768px) {
    .main-hero-bg {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.tournament-game-img {
    display: block;
    width: 100%;
    max-width: 160px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 18px;
    margin: 0 auto 15px auto;
    background: #111;
    border: 2px solid #00ff88;
    box-shadow: 0 4px 24px rgba(0,255,136,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tournament-game-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px #00ff8899;
}

.section-box.tournament-card {
    padding: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Optional: add a subtle shadow */
.tournament-game-img {
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.15);
} 