/* ==========================================
AGNICLUB SUPER FAST WHITE UI
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #222222;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* ================= MAIN CONTAINER ================= */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
    background: #f7f9fa;
}

.card-container {
    max-width: 500px;
    width: 100%;
    padding: 35px 25px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #eeeeee;
}

/* 1. ROUND LOGO */
.hero-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00b248;
    margin-bottom: 25px;
    display: inline-block;
}

/* 2. FAST BUTTONS */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.btn {
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    touch-action: manipulation;
    border: none;
    transition: transform 0.08s ease, opacity 0.08s ease;
    will-change: transform;
}

.register { background: #00b248; }
.login { background: #005dff; }
.support { background: #5b00d4; }
.vip { background: #ff6b00; }

.btn:active {
    opacity: 0.7;
    transform: scale(0.97);
}

/* 3. TEXT FORMATTING */
.hero-text h1 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
}

.hero-text span {
    color: #00b248;
}

.hero-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* ================= FEATURES ================= */
.features {
    padding: 50px 20px;
    background: #ffffff;
}

.features h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #111;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

.feature-card {
    padding: 25px;
    border-radius: 16px;
    background: #fcfcfc;
    border: 1px solid #eaeaea;
    text-align: center;
}

.feature-card i {
    font-size: 32px;
    color: #00b248;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #222;
}

.feature-card p {
    color: #777;
    line-height: 1.5;
    font-size: 14px;
}

/* ================= FOOTER ================= */
footer {
    padding: 25px;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #eaeaea;
    font-size: 13px;
}

footer p {
    color: #888;
    margin: 5px 0;
}

footer b {
    color: #00b248;
}
