@font-face {
    font-family: DM_Sans;
    src: local("DM_Sans"), url("../fonts/DM_Sans/DMSans-VariableFont_opsz,wght.ttf");
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: clamp(28px, 8vw, 50px);
}
body {
    font-family: DM_Sans, sans-serif;
    color: #fff;

    background: #000;
    text-shadow: 0 0 2px #fff, 0 0 8px #b69600;
}
body {
    background: linear-gradient(to right, #000000, #271e0e, #251508);
}
ul {
    list-style: none;
}
button {
    box-shadow: none;
    outline: 0;
    border: none;
}
img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.page-wrapper {
    min-height: 100vh;
}
.page-container {
    display: flex;
    flex-direction: column;
}
.page-branch {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    border-bottom: 2px solid;
    height: 75vh;
    border-image: linear-gradient(to right, #ffcc00, #834a00);
    border-image-slice: 1;
}
.page-logo {
    padding: 15px;
    width: 50%;
    text-align: center;
    overflow: hidden;
    border-right: 2px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    border-image: linear-gradient(to bottom, #ffcc00, #834a00);
    border-image-slice: 1;
}
.page-info {
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    font-weight: bold;
}
.page-domain {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, #ffcc00, #834a00);
    border-image-slice: 1;
    font-size: 40px;
}
.page-dealer {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-live-time {
    text-align: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    min-height: 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25vh;
}
.page-domain {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.scroll-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 10s linear infinite;
}

.scroll-content span {
    display: inline-block;
    padding-right: 50px; /* khoảng trắng giữa 2 bản copy */
    margin-left: 229px;
    letter-spacing: 4px;
}
/* Cuộn liên tục */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* (Tùy chọn) Dừng khi hover */
.page-domain:hover .scroll-content {
    animation-play-state: paused;
}
@media (max-width: 1200px) {
}
@media (max-width: 991px) {
}
@media (max-width: 768px) {
}
@media (max-width: 480px) {
}
