/*
Theme Name: Flatsome Child
Theme URI: https://66d.local/
Description: Child theme cho Flatsome - bản clone 68 Game Bài (local, học tập)
Author: Local Dev
Template: flatsome
Version: 1.0.0
Text Domain: flatsome-child
*/

/* ==========================================================================
   1. TIÊU ĐỀ H1 - hiệu ứng chữ cầu vồng chạy
   ========================================================================== */
h1 {
	font-size: 25px;
	font-weight: bold;
	animation: rainbow 5s linear infinite;
	background: linear-gradient(270deg, red, orange, yellow, green, blue, indigo, violet);
	background-size: 400% 400%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

@keyframes rainbow {
	0%   { background-position: 0% 50%; }
	100% { background-position: 100% 50%; }
}

/* ==========================================================================
   2. TIÊU ĐỀ H2 - nền gradient cam đỏ
   ========================================================================== */
h2 {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(90deg, #ff9c00, #9a0000);
	padding: 10px 20px;
	border-radius: 5px;
}

/* ==========================================================================
   3. NÚT ĐĂNG KÝ / ĐĂNG NHẬP TRÊN HEADER - viền phát sáng cầu vồng
   ========================================================================== */
.header-button {
	padding: 0;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	background-color: #2c3e50;
	border: 1px solid transparent;
	border-radius: 99px;
	cursor: pointer;
	position: relative;
	z-index: 1;
	transition: background-color .3s ease;
	box-shadow: 0 0 0 3px #000;
	animation: rainbow-glow 4s linear infinite;
}

.header-button:hover {
	background-color: #34495e;
}

@keyframes rainbow-glow {
	0%   { box-shadow: 0 0 0 4px #ff0000, 0 0 10px #ff0000; }
	14%  { box-shadow: 0 0 0 4px #ff8800, 0 0 10px #ff8800; }
	28%  { box-shadow: 0 0 0 4px #ffcc00, 0 0 10px #ffcc00; }
	42%  { box-shadow: 0 0 0 4px #00ff00, 0 0 10px #00ff00; }
	57%  { box-shadow: 0 0 0 4px #0099ff, 0 0 10px #0099ff; }
	71%  { box-shadow: 0 0 0 4px #4400ff, 0 0 10px #4400ff; }
	85%  { box-shadow: 0 0 0 4px #cc00ff, 0 0 10px #cc00ff; }
	100% { box-shadow: 0 0 0 4px #ff0000, 0 0 10px #ff0000; }
}

/* ==========================================================================
   4. SLIDER "TOP NHÀ CÁI UY TÍN"
   ========================================================================== */
.top-brand-slider {
	margin-bottom: 15px;
}

.top-brand-slider-title {
	text-align: center;
	margin-bottom: 14px;
}

.top-brand-slider-title span {
	display: inline-block;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: .3px;
	color: #fff;
	text-transform: uppercase;
}

.top-brand-slider .flickity-slider > * {
	padding: 0 6px;
}

.top-brand-slider .img {
	margin-bottom: 0;
}

.top-brand-slider .img-inner {
	background: #222;
	border-radius: 10px;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 110px;
}

.top-brand-slider .img-inner img {
	max-height: 94px;
	width: auto;
	margin: 0 auto;
}

/* ==========================================================================
   5. KHUNG NỘI DUNG CUỘN (SEO content box)
   ========================================================================== */
.noi-dung-cuon {
	padding: 20px;
	position: relative;
	overflow-y: scroll;
	max-height: 400px;
	border-radius: 15px;
	box-shadow: #db10ff 0 0 15px 4px;
}

.noi-dung-cuon table {
	width: 100%;
}

.noi-dung-cuon figure.wp-caption {
	max-width: 100%;
}

.noi-dung-cuon figure.wp-caption img {
	height: auto;
}

/* ==========================================================================
   6. BANNER DÍNH CHÂN TRANG
   ========================================================================== */
.footer-banner-fixed {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99;
	background: rgba(0, 0, 0, .65);
}

.footer-banner-fixed .row {
	margin-bottom: 0;
}

.footer-banner-fixed img {
	display: block;
	width: 100%;
	height: auto;
}

.footer-banner-fixed.is-hidden {
	display: none;
}

.footer-banner-close {
	position: absolute;
	top: -12px;
	right: 8px;
	width: 24px;
	height: 24px;
	line-height: 22px;
	text-align: center;
	border-radius: 50%;
	background: #fff;
	color: #000;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	z-index: 2;
}

/* ==========================================================================
   7. TINH CHỈNH GIAO DIỆN TỐI
   ========================================================================== */
.footer-widgets .col h4 {
	color: #fff;
	background: none;
	font-size: 17px;
	letter-spacing: .5px;
	padding: 0;
	margin: 0 0 14px;
	line-height: 1.3;
}

/* Canh đều 4 cột footer */
.footer-widgets .col-inner > .text,
.footer-widgets .col-inner {
	text-align: left;
}

.footer-widgets .col p,
.footer-widgets .col li {
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1.55;
	padding-left: 0;
}

.footer-widgets .col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-widgets .col p:last-child,
.footer-widgets .col li:last-child {
	margin-bottom: 0;
}

.footer-widgets .col a {
	color: #fff;
	word-break: break-word;
}

.footer-widgets .col a:hover {
	color: #ff9c00;
}

.footer-widgets .col img {
	margin-bottom: 14px;
}

.dark .box-blog-post .post-title a {
	color: #fff;
}

@media (max-width: 549px) {
	h1 { font-size: 20px; }
	h2 { font-size: 19px; padding: 8px 14px; }
	.noi-dung-cuon { padding: 12px; }
}
