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

body {
    min-height: 100vh;
    background-color: #050608;
    background-image: radial-gradient(circle at center, #0a1a1a 0%, #000000 100%);
    color: #00ff9d;
    font-family: monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(0, 255, 157, 0.4);
    background: rgba(7, 12, 11, 0.9);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 255, 157, 0.15);
    text-align: center;
}

.status {
    font-size: 10px;
    color: #00ff9d;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

h1 {
    color: #fff;
    font-size: 1.8em;
    text-shadow: 0 0 10px #00ff9d;
    margin-bottom: 5px;
}

.subtitle {
    color: #ff4fd8;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.terminal {
    background: #030504;
    border-left: 3px solid #00ff9d;
    padding: 12px;
    text-align: left;
    font-size: 12px;
    color: #9fffd7;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* GIF CONTAINER STYLING */
.gif-container {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #00ff9d;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
    background-color: #000;
}

.gif-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.msg-box {
    margin-top: 15px;
    padding: 15px;
    border: 1px dashed rgba(0, 255, 157, 0.4);
    background: rgba(0, 255, 157, 0.03);
    color: #d9fff2;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.btn {
    padding: 14px;
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid #00ff9d;
    color: #00ff9d;
    font-family: monospace;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 13px;
}

.btn:active {
    transform: scale(0.95);
    background: #00ff9d;
    color: #000;
}

.btn-slap {
    border-color: #ff4fd8;
    color: #ff4fd8;
    background: rgba(255, 79, 216, 0.1);
}

.btn-slap:active {
    background: #ff4fd8;
    color: #000;
}
