:root {
    --primary-background: #070740;
    --secondary-background: #720842;
    --accent-color: #BF204E;
    --text-color: #fff;
    --hover-color: #720842;
    --active-color: #070740;
    --gradient-start: rgba(7, 7, 64, 0.5);
    --gradient-end: rgba(7, 7, 64, 0.5);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --text-strong: #BF204E;
}

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

html, body {
    font-family: "Kanit", sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
    box-sizing: border-box;
}

main {
    flex: 1 0 auto;
    width: 100%;
    box-sizing: border-box;
}

#footer {
    flex-shrink: 0;
}

strong {
    color: var(--text-color);
}

.logo {
    width: 100px;
    height: auto;
}

.logo-footer {
    width: 20px;
    height: 20px;
}

.logo-ash {
    width: 200px;
}

.logo-button {
    width: 30px;
    height: 20px;
}

.brand-logo {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.1);
}

@media (max-width: 430px) {
    .logo {
        width: 60px;
    }
    .logo-footer {
        width: 16px;
        height: 16px;
    }
    .logo-ash {
        width: 120px;
    }
    .brand-logo {
        max-width: 80px;
    }
}