body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #d4eaf7, #ffffff);
    color: #000;
    text-align: center;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh; 
    padding: 20px; 
}

.content {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-in-out;
    max-width: 500px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background: #007bff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    background: #0056b3;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

/* Animasi live claim */
.live-claims {
    font-size: 1.6rem;
    font-weight: bold;
    color: #0c3607;
    margin-top: 20px;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}

/* Tambahan elemen lain */
.benefits {
    margin-top: 20px;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 500px;
}

.benefits ul {
    list-style-type: none;
    padding: 0;
}

.benefits li {
    margin: 10px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.benefits li::before {
    content: '✔';
    margin-right: 10px;
    color: #33ff00;
}

/* Styling bagian keamanan */
.secure-info {
    margin-top: 25px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.3);
}

/* Animasi fadeIn */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

:root {
    --text-color: #ffffff;
    --container-bg-color: rgba(0, 0, 0, 0.5); 
    --button-bg-color: #40E0D0; 
    --button-hover-bg-color: #32b8b0; 
    --map-border-color: #40E0D0; 
    --card-bg-color: rgba(255, 255, 255, 0.1);
    --card-border-color: #e0e0e0;
    --footer-text-color: #ccc;
    --font-size-large: 2.5rem;
    --font-size-medium: 1.2rem;
    --font-size-small: 0.9rem;
    --spacing-large: 30px;
    --spacing-medium: 20px;
    --spacing-small: 10px;
}

.creator {
    text-align: center;
    font-size: var(--font-size-small);
    color: var(--footer-text-color);
    padding: var(--spacing-medium) 0;
    transition: color 0.3s;
}

.creator:hover {
    color: #555;
}

.creator a {
    margin: 0 10px;
    display: inline-block;
    transition: color 0.3s;
}

.creator a:hover {
    color: var(--button-bg-color);
}

.creator img {
    width: 28px;
    height: auto;
}

.creator span {
    font-weight: bold;
    color: #fff;
}

html, body {
    overflow-x: hidden; /* Mencegah scroll horizontal */
    width: 100%;
}
