/* Background Gradient */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #0a0a0f, #0d0d13, #0a0a0f);
    font-family: Arial, sans-serif;
    color: #fff;
    text-align: center;
}

/* Fade-In Animation */
.fadein {
    animation: fadein 1.2s ease-in-out;
}
@keyframes fadein {
    from { opacity: 0; transform: translateY(20px);}
    to   { opacity: 1; transform: translateY(0);}
}

/* Container */
.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Logo */
.logo {
    width: 140px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Logo Glow */
.glow {
    filter: drop-shadow(0 0 12px #ff6600) drop-shadow(0 0 18px #1e90ff);
}

h1 {
    font-size: 28px;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 15px;
    opacity: 0.7;
    margin-bottom: 30px;
}

/* Buttons */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(20, 20, 26, 0.9);
    border: 1px solid #2d2d34;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    color: white;
    font-size: 17px;
    font-weight: bold;
    transition: 0.25s ease;
    margin: 12px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Glow Hover Effekt */
.glow-hover:hover {
    transform: scale(1.04);
    box-shadow: 0 0 12px #ff6600, 0 0 22px #1e90ff;
}

/* Icon Size */
.icon {
    width: 26px;
    height: 26px;
}

/* Footer */
footer {
    margin-top: 40px;
    opacity: 0.6;
    font-size: 13px;
}
