:root {
    --yellow: #FFE600;
    --orange: #FF6B00;
    --blue: #3483FA;
    --dark: #111111;
    --card: rgba(255,255,255,0.05);
    --border: rgba(255,255,255,0.1);
    --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(255,230,0,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(52,131,250,0.12) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'%3E%3Cpath d='M0 20h40M20 0v40'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    pointer-events: none;
}

/* Datetime */
.datetime {
    position: fixed;
    top: 20px;
    right: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    z-index: 9999;
    backdrop-filter: blur(10px);
    letter-spacing: 0.05em;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    padding: 100px 24px 60px;
}

/* Hero */
.hero {
    text-align: center;
    margin-bottom: 60px;
}

.logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.logo-img {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    border: 2px solid var(--yellow);
    object-fit: cover;
    box-shadow: 0 0 30px rgba(255,230,0,0.3);
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 6px;
}

/* Section label */
.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 14px;
    font-weight: 700;
}

/* Cards */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 6px;
}

.card-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Buttons */
.btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.04em;
}

.btn:hover { transform: translateY(-2px); }

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }

.btn-telegram {
    background: linear-gradient(135deg, #2AABEE, #1a7fc1);
    box-shadow: 0 4px 20px rgba(42,171,238,0.25);
}
.btn-telegram:hover { box-shadow: 0 8px 30px rgba(42,171,238,0.4); }

.btn-shopee {
    background: linear-gradient(135deg, #EE4D2D, #c73b20);
    box-shadow: 0 4px 20px rgba(238,77,45,0.25);
}
.btn-shopee:hover { box-shadow: 0 8px 30px rgba(238,77,45,0.4); }

.btn-ml {
    background: linear-gradient(135deg, var(--blue), #1a5fc7);
    box-shadow: 0 4px 20px rgba(52,131,250,0.25);
}
.btn-ml:hover { box-shadow: 0 8px 30px rgba(52,131,250,0.4); }

.btn i { font-size: 1.2rem; }

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.product-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 18px 16px;
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.25s;
}

.product-card:hover {
    background: rgba(255,230,0,0.08);
    border-color: rgba(255,230,0,0.3);
    transform: translateY(-2px);
}

.product-card i {
    font-size: 1.4rem;
    color: var(--yellow);
}

.product-card span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* Social */
.social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    width: 72px;
    padding: 14px 8px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    font-size: 1.5rem;
    transition: all 0.25s;
}

.social-btn span {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    transition: color 0.25s;
}

.social-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255,230,0,0.4);
    box-shadow: 0 8px 24px rgba(255,230,0,0.15);
}

.social-btn.tiktok:hover    { background: rgba(0,0,0,0.5);     color: #fff; }
.social-btn.instagram:hover { background: rgba(225,48,108,0.2); color: #e1306c; }
.social-btn.youtube:hover   { background: rgba(255,0,0,0.15);   color: #FF0000; }
.social-btn.twitter:hover   { background: rgba(29,161,242,0.15);color: #1DA1F2; }
.social-btn.facebook:hover  { background: rgba(24,119,242,0.15);color: #1877F2; }
.social-btn.pinterest:hover { background: rgba(230,0,35,0.15);  color: #E60023; }
.social-btn.email:hover     { background: rgba(255,230,0,0.12); color: var(--yellow); }

.social-btn:hover span { color: rgba(255,255,255,0.7); }

/* Divider */
.divider {
    text-align: center;
    color: rgba(255,255,255,0.15);
    margin: 10px 0;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.08em;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate          { animation: fadeUp 0.6s ease both; }
.delay-1          { animation-delay: 0.1s; }
.delay-2          { animation-delay: 0.2s; }
.delay-3          { animation-delay: 0.3s; }
.delay-4          { animation-delay: 0.4s; }
.delay-5          { animation-delay: 0.5s; }

/* Responsive */
@media (max-width: 480px) {
    .logo-text { font-size: 2.4rem; }
    .products-grid { grid-template-columns: 1fr; }
    .container { padding: 80px 16px 50px; }
    .social-btn { width: 64px; }
}