/* ============================================
   GAHARU4D - Custom Styles
   ============================================ */

/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: monospace;
    background: #946e1be7;
    background-image: radial-gradient(#000000 5%, transparent 50%);
    background-size: 5px 5px;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* ===== LOGO ===== */
.logo {
    margin-bottom: 10px;
}

/* ===== TYPING WELCOME ===== */
.welcome {
    max-width: 350px;
    width: 100%;
    margin: 0 auto 15px;
}

.welcome h3 {
    font-size: 12px;
    color: #ffffff;
    overflow: hidden;
    border-right: 0.15em solid #fbf4a0;
    white-space: nowrap;
    letter-spacing: 0.09em;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #fbf4a0; }
}

/* ===== BANNER ===== */
.banner {
    border-radius: 10px;
    width: 100%;
    margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.btn-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.btn {
    display: block;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border: none;
    outline: none;
    color: rgb(250, 250, 250);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: scale(1.02);
}

/* ===== GLOW EFFECT ===== */
.glow-on-hover::before {
    content: '';
    background: linear-gradient(88deg, #0b35f3, #0e0e0e, #0b35f3, #0e0e0e, #0011ff, #0e0e0e, #0b35f3, #0e0e0e);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 1;
    border-radius: 10px;
}

.glow-on-hover::after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* ===== FOOTER ===== */
.copyright {
    text-align: center;
    color: #ffffff;
    font-size: 12px;
}

.copyright a {
    color: #fcfcfc;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 480px) {
    .container {
        padding: 15px 10px;
    }
    
    .btn {
        font-size: 18px;
        padding: 14px;
    }
    
    .welcome h3 {
        font-size: 10px;
    }
}