/* ====== GLOBAL STYLE ====== */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
    scroll-behavior: smooth;
}

h1 {
    margin-top: 30px;
    color: #ff0000;
}

h2 {
    color: #333;
    margin: 30px 0 20px 0;
}

p.description {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* ====== NAVBAR ====== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    color: #fff;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 20px;
    font-weight: bold;
}

.navbar-right a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar-right a:hover {
    color: #ffcc00;
}

/* ====== IMAGE ====== */
.bottom-image img {
    max-width: 90%;
    margin: 20px auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* ====== EFFECT SECTION ====== */
#effects {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    width: 90%;
    margin: 30px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.effects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 kolom rata */
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;

    /* Tambahan agar semua kolom sama tinggi */
    align-items: start;
}

.effect-column {
    display: flex;
    flex-direction: column;
    gap: 12px;

    /* Biar tinggi seragam di grid */
    height: 100%;
}

/* Kolom tengah (Spawns) selalu di tengah dan text center */
.center-column {
    text-align: center;
}

.center-column .effect-card {
    justify-content: center;
}

.category-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.effect-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 12px;
    gap: 10px;
    transition: transform 0.2s ease;
    min-height: 80px;
}

.effect-card:hover {
    transform: translateY(-3px);
}

.effect-image {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    background-color: #eee;
    padding: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.effect-info {
    flex: 1; /* biar teks mengisi sisa ruang */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left; /* rata kiri biar rapi */
}

.effect-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.effect-info p {
    margin: 2px 0 0 0;
    font-size: 13px;
    color: #555;
}

/* Responsif: layar kecil jadi 1 kolom */
@media (max-width: 900px) {
    .effects-grid {
        grid-template-columns: 1fr;
    }
    .effect-card {
        flex-direction: column;
        text-align: center;
    }
    .effect-image {
        margin: 0 0 8px 0;
    }
}

/* ====== BUY SECTION ====== */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.plan-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.plan-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.plan-features {
    text-align: left;
    margin-bottom: 15px;
    padding-left: 15px;
    color: #555;
}

.plan-price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #0077cc;
}

.action-buttons button {
    padding: 10px 15px;
    margin: 5px 0;
    width: 100%;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    transition: transform 0.2s;
}

.action-buttons button:hover {
    transform: scale(1.05);
}

.buy-now { background-color: #28a745; }
.discord { background-color: #7289da; }
.tiktok { background-color: #ff0050; }

/* ===== ABOUT PILL BUTTONS ===== */
.about-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 18px;
}

.about-icons .social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s;
    font-size: 15px;
    min-height: 44px;
    line-height: 1;
}

.about-icons .social-btn i {
    font-size: 18px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.about-icons .social-btn span {
    display: inline-block;
    color: #fff;
}

.about-icons .social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    opacity: 0.98;
}

.about-icons .social-btn.discord   { background-color: #5865F2; }
.about-icons .social-btn.tiktok    { background-color: #000000; }
.about-icons .social-btn.youtube   { background-color: #FF0000; }
.about-icons .social-btn.sociabuzz { background-color: #28a745; }

/* ===== POPUP ===== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.popup-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.btn-yes {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-no {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}
