body {
    font-family: 'Gowun Dodum', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    margin: 0;
    background: #fdf8f0; /* Warm cream background */
    color: #795548; /* Soft brown text */
}

.main-container {
    max-width: 500px;
    width: 90%;
    padding: 2rem;
    position: relative;
    bottom: 2vh;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(121, 85, 72, 0.15); /* Warm shadow */
}

.icon-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.bungeoppang-icon {
    display: block;
    max-width: 100%;
    height: auto;
    width: 200px;
    transition: transform 0.3s ease-in-out; /* Animation transition */
}

.bungeoppang-icon:hover {
    transform: rotate(-5deg) scale(1.05); /* Fun hover animation */
}

h1 {
    font-size: 2.5rem;
    color: #5C4033; /* Dark sienna (anko) color */
    margin-top: 0;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

#bot-login-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap; /* Allow buttons to wrap on small screens */
}

.btn-login {
    display: block;
    margin: 0; /* Remove auto margin */
    padding: 16px 24px; /* Adjust padding slightly */
    background-color: var(--accent-2); /* Warm amber */
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 4px 14px 0 rgba(255, 183, 77, 0.39);
    /* width and max-width are removed to allow natural sizing */
}

.btn-login:hover {
    background-color: #e6a23c; /* Darker amber */
    box-shadow: 0 6px 20px 0 rgba(255, 183, 77, 0.45);
    transform: translateY(-3px);
}

.btn-login:active {
    transform: translateY(0);
    box-shadow: 0 4px 14px 0 rgba(255, 183, 77, 0.39);
}

.warning-text {
    color: red;
    font-weight: bold;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

#bot99-button {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: transparent; /* Make it transparent */
    box-shadow: none; /* Remove shadow */
    padding: 8px 12px; /* Smaller padding */
    font-size: 0.8rem; /* Smaller font size */
    color: transparent; /* Make text transparent */
}

#bot99-button img {
    opacity: 0; /* Make image transparent */
}

#bot99-button:hover {
    background-color: transparent; /* No background change on hover */
    box-shadow: none; /* No shadow on hover */
    color: transparent; /* Keep text transparent on hover */
}
