
.bg-ro {
	width: 100%;
	background-size: cover;
	background-position: center;
	background-image: linear-gradient(transparent,rgba(0,0,0,0.3)),url(../../images/bg-home.jpg);
}

.download-game {
	display: inline-block;
	width: 320px;
	height: 80px;
	vertical-align: middle;
	background-image: url(../../images/btn-download-game.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	transition: all 0.3s ease;
	overflow: hidden;
}

.btn-register {
	display: inline-block;
	width: 320px;
	height: 80px;
	vertical-align: middle;
	background-image: url(../../images/btn-register.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	transition: all 0.3s ease;
	overflow: hidden;
}

.btn-register:active, .download-game:active {
  transform: scale(0.97);
}

.home-box {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.text-box {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.text-box p {
	font-size: 15px;
	font-weight: 500;
}

.text-box h1 {
	font-size: 100px;
	font-weight: 700;
	line-height: 80px;
	color: transparent;
	-webkit-text-stroke: 1px #ccc;
	background: url(../../images/back.png);
	-webkit-background-clip: text;
	background-position: 0 0;
	animation: back 60s linear infinite;
}

@keyframes back {
	100% {
		background-position: 3000px 0;
	}
}

@media (max-width: 840px) {
	.text-box p {
		width: 29%;
	}
	.text-box h1 {
		font-size: 60px;
		line-height: 60px;
	}
}

@media (min-width: 768px) {
	.row-home {
		display: flex;
		margin-top: 20rem;
		gap: 1rem;
	}
	.row-h {
		display: flex;
		margin-top: 20rem;
		gap: 7rem;
	}
}
@media (max-width: 768px) {
	.row-home {
		margin-top: 20rem;
	}
	.row-h {
		margin-top: 15rem;
	}
}

.text-center a {
	color: var(--bs-body-color);
	text-decoration: none;
}

.text-center a:hover {
	color: #dc3545;
}

.accordion-dropdown-link {
	width: 100%;
	display: flex;
	color: var(--bs-body-color);
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
}

.accordion-dropdown-link:hover {
	filter: brightness(1.25);
}

.accordion-button {
	font-size: 1.2rem;
	font-weight: 500;
	background-color: transparent;
}

.dashboard-container {
    margin-top: 2.5rem;
}

img {
	border-radius: 8px;
}

.information {
    background-color: var(--surface-color);
    width: 500px;
    padding: 2rem 2rem;
    border-radius: 30px;
    text-align: center;
	transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .information {
        width: 320px;
    }
}

.rates-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-text-color);
    margin-bottom: 1.5rem;
}

.rate-section {
    margin-bottom: 1.5rem;
    text-align: left;
}
.rate-section:last-child {
    margin-bottom: 0;
}

.group-title {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--secondary-text-color);
    text-transform: uppercase;
    padding-bottom: 0.5rem;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    padding: 0.5rem 0;
}

.rate-label {
    color: var(--primary-text-color);
}

.rate-value {
    color: #ffd700; /* สีทอง */
    font-weight: 500;
}

.rate-divider {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    margin: 1.5rem 0;
}

.chat-messages-container {
	padding-bottom: 5rem;
}

.border-information {
	border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
	margin-top: 1rem;
	margin-bottom: 1rem;
}