:root {
--green-dark: #0a3d2c;
--gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
--white: #ffffff;
--text-gray: #444;
--radius: 20px;
--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--text-gray); line-height: 1.8; overflow-x: hidden; background: #fff; }

h1, h2, h3, h4, .logo-text { font-family: 'Playfair Display', serif; color: var(--green-dark); }

/* --- HEADER & NAVIGATION (Fix Logo & Menu 1 Line) --- */
header {
background: var(--green-dark);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
padding: 10px 0;
box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-container {
max-width: 1500px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo-box { display: flex; align-items: center; text-decoration: none; white-space: nowrap; }
.logo-text { color: #f9dfa1; font-size: 20px; font-weight: 700; font-style: italic; }

.nav-menu { display: flex; list-style: none; gap: 8px; align-items: center; }
.nav-menu li a {
background: var(--gold-gradient);
color: var(--green-dark) !important;
text-decoration: none;
font-size: 10px; /* Small font size as requested */
font-weight: 700;
padding: 8px 15px;
border-radius: 50px;
text-transform: uppercase;
transition: var(--transition);
display: inline-block;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nav-menu li a:hover {
transform: translateY(-3px) scale(1.05);
box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Burger Menu (Mobile Fix) */
.burger { display: none; color: #f9dfa1; font-size: 26px; cursor: pointer; }

/* --- SECTIONS --- */
section { padding: 100px 0; width: 100%; border-bottom: 1px solid #f0f0f0; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 25px; }
.sec-title { text-align: center; margin-bottom: 60px; }
.sec-title h2 { font-size: 45px; margin-bottom: 15px; font-style: italic; position: relative; display: inline-block; }
.sec-title h2::after { content: ''; width: 100px; height: 3px; background: var(--gold-gradient); position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); border-radius: 10px; }

.content-flex { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
.text-box { flex: 1; min-width: 400px; text-align: justify; font-size: 16px; }
.img-box { flex: 1; min-width: 400px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 5px solid #fff; }
.img-box img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); display: block; }
.img-box:hover img { transform: scale(1.08); }

/* Hero Full Screen */
.hero {
height: 100vh;
background: linear-gradient(rgba(10, 61, 44, 0.4), rgba(10, 61, 44, 0.4)), url('images/The-Global-City-Hero-Title.webp') center/cover;
display: flex; align-items: center; justify-content: center; text-align: center; color: white;background-size: 100% 100%;
animation: moveAndZoom 15s ease-in-out infinite alternate;
}
@keyframes moveAndZoom {
0% {
background-size: 100%;
background-position: 0% 50%;
}
100% {
background-size: 120%; /* Phóng to lên 120% */
background-position: 100% 50%; /* Di chuyển từ trái sang phải */
}
}
.hero-content h1 { font-size: clamp(35px, 6vw, 70px); color: #f9dfa1; margin-bottom: 20px; font-style: italic; }

/* --- AMENITIES TABS --- */
.tabs-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.tab-btn {
padding: 12px 25px;
background: var(--white);
border: 2px solid #d4af37;
color: var(--green-dark);
cursor: pointer;
border-radius: 50px;
font-weight: 700;
font-family: inherit;
transition: var(--transition);
text-transform: uppercase;
font-size: 12px;
}
.tab-btn.active, .tab-btn:hover { background: var(--gold-gradient); border-color: transparent; box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }
.tab-content { display: none; animation: fadeIn 0.8s ease forwards; }
.tab-content.active { display: block; }

/* --- PRODUCT MENU --- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; margin-top: 40px; }
.product-card { background: #fdfdfd; border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.05); transition: var(--transition); border: 1px solid #eee; }
.product-card:hover { transform: translateY(-10px); }
.p-info { padding: 25px; }
.p-info h4 { margin-bottom: 15px; font-size: 22px; }
.p-list { list-style: none; font-size: 14px; color: #555; }
.p-list li { margin-bottom: 8px; border-bottom: 1px dashed #ddd; padding-bottom: 5px; }

/* --- GALLERY LIGHTBOX --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { height: 200px; border-radius: 15px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.15); filter: brightness(0.8); }

#lightbox {
position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95);
display: none; justify-content: center; align-items: center; z-index: 10000; padding: 40px;
}
#lightbox img { max-width: 100%; max-height: 100%; border-radius: 10px; border: 3px solid #f9dfa1; }
.close-lb { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 50px; cursor: pointer; }

/* --- VR360 --- */
#vr-viewer { width: 100%; height: 600px; background: #000; border-radius: var(--radius); margin-top: 30px; }

/* --- FORM --- */
.form-wrap {
max-width: 900px; margin: 0 auto; background: #fff; padding: 50px;
border-radius: 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); border: 1px solid rgba(212, 175, 55, 0.2);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, textarea {
width: 100%; padding: 15px 20px; border: 1px solid #eee; border-radius: 12px;
background: #fdfdfd; font-family: inherit; outline: none; transition: var(--transition);
}
input:focus, textarea:focus { border-color: #d4af37; box-shadow: 0 0 15px rgba(212, 175, 55, 0.1); }
.submit-btn {
width: 100%; padding: 18px; border: none; border-radius: 50px;
background: var(--gold-gradient); color: var(--green-dark);
font-weight: 700; text-transform: uppercase; cursor: pointer; transition: var(--transition);
margin-top: 20px; font-size: 16px;
}
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4); }

/* --- FOOTER --- */
footer { background: var(--green-dark); color: #ecf0f1; padding: 80px 0 40px; }
.footer-line { border-top: 1px solid rgba(255,255,255,0.3); margin: 40px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; }
.footer-col h4 { color: #f9dfa1; font-size: 22px; margin-bottom: 20px; }
.footer-col p, .footer-col li { font-size: 14px; margin-bottom: 12px; list-style: none; }
.contact-info i { color: #f9dfa1; margin-right: 12px; width: 20px; }
.footer-col a { font-size: 14px; margin-bottom: 12px; list-style: none;color:#fff;text-decoration:none; }
/* Mobile Menu Animation */
@media (max-width: 1200px) {
.nav-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--green-dark); flex-direction: column; padding: 100px 20px;
    transition: 0.5s; box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}
.nav-menu.active { right: 0; }
.nav-menu li { width: 100%; }
.nav-menu li a { width: 100%; text-align: center; font-size: 14px; }
.burger { display: block; }
.hero-content h1 { font-size: 35px; }
.content-flex { flex-direction: column; }
.form-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; }
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
:root {
--primary-gold: #d4af37;
--light-gold: #f9f295;
--dark-bg: #0a0a0b;
--glass-bg: rgba(255, 255, 255, 0.05);
--transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-wrapper {
position: relative;
display: inline-block;
margin-top: 15px;
}
.btn-wrapper a 
{
text-decoration: none;
display: block;
}
.glow-button {
position: relative;
padding: 8px 45px;
font-size: 18px;
font-weight: 700;
color: #fff;
text-transform: uppercase;
letter-spacing: 2px;
background: #00000087;
border: 2px solid var(--primary-gold);
border-radius: 50px;
cursor: pointer;
z-index: 1;
overflow: hidden;
transition: var(--transition);
}

/* Hiệu ứng tia sáng chạy qua */
.glow-button::before {
content: '';
position: absolute;
top: 0; left: -100%;
width: 100%; height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: 0.5s;
}

.glow-button:hover::before {
left: 100%;
}

.glow-button:hover {
color: #000;
background: var(--primary-gold);
box-shadow: 0 0 30px var(--primary-gold);
transform: scale(1.05);
}

/* Hào quang tỏa ra xung quanh nút */
.glow-effect {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
border-radius: 50px;
background: var(--primary-gold);
filter: blur(20px);
opacity: 0.6;
z-index: -1;
animation: pulse 2s infinite;
}

@keyframes pulse {
0% { transform: scale(0.9); opacity: 0.6; }
50% { transform: scale(1.2); opacity: 0.3; }
100% { transform: scale(0.9); opacity: 0.6; }
}

/* --- 3. POPUP SANG TRỌNG --- */
.overlay {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(10px);
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
visibility: hidden;
transition: var(--transition);
z-index: 9999;
}

.overlay.active {
opacity: 1;
visibility: visible;
}

.popup-card {
position: relative;
width: 100%;
max-width: 100%;
background: var(--glass-bg);
border: 1px solid rgba(212, 175, 55, 0.3);
text-align: center;
color: white;
transform: translateY(50px) scale(0.8);
transition: var(--transition);
box-shadow: 0 25px 50px rgba(0,0,0,0.5);
height: 100%;
}

.overlay.active .popup-card {
transform: translateY(0) scale(1);
}


:root {
--gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
--vinhomes-green: #0a3d2c;
--white: #ffffff;
}


/* Lớp phủ Popup */
.popup-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.85);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
/* Ban đầu ẩn đi */
opacity: 0;
visibility: hidden;
transition: all 0.5s ease;
}

/* Trạng thái khi popup hiển thị */
.popup-overlay.active {
opacity: 1;
visibility: visible;
}

/* Container Form (Contact Card) */
.contact-card {
background: var(--vinhomes-green);
width: 90%;
max-width: 500px;
padding: 50px 40px;
border-radius: 5px;
border: 1px solid rgba(212, 175, 55, 0.3);
box-shadow: 0 25px 50px rgba(0,0,0,0.6);
position: relative;
transform: scale(0.7);
transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.active .contact-card {
transform: scale(1);
}

/* Nút tắt Popup */
.close-popup {
position: absolute;
top: 15px;
right: 15px;
color: #f9dfa1;
font-size: 24px;
cursor: pointer;
transition: 0.3s;
z-index: 1001;
}

.close-popup:hover {
transform: rotate(90deg);
color: white;
}

/* Hiệu ứng viền vàng trên cùng */
.contact-card::before {
content: '';
position: absolute;
top: 0; left: 0; width: 100%; height: 4px;
background: var(--gold-gradient);
}

.header-box {
text-align: center;
margin-bottom: 30px;
}

.header-box h2 {
color: #f9dfa1;
font-size: 1.8rem;
text-transform: uppercase;
letter-spacing: 3px;
margin-bottom: 10px;
}

.header-box p {
color: #ffffff;
font-weight: 300;
font-size: 0.95rem;
}

/* Input Styles */
.form-group {
position: relative;
margin-bottom: 20px;
}

.form-group i {
position: absolute;
left: 15px;
top: 15px;
color: #d4af37;
}

.form-control {
width: 100%;
padding: 12px 15px 12px 45px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(212, 175, 55, 0.2);
border-radius: 4px;
color: white;
font-size: 1rem;
transition: all 0.4s;
}

.form-control:focus {
outline: none;
border-color: #f9dfa1;
background: rgba(255, 255, 255, 0.1);
box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Nút bấm nổi bật (CTA) */
.btn-submit {
width: 100%;
padding: 16px;
border: none;
border-radius: 4px;
background: var(--gold-gradient);
color: #0a3d2c;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.3s;
font-size: 1rem;
margin-top: 10px;
}

.btn-submit:hover {
transform: scale(1.02);
box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Hiệu ứng Shimmer */
.btn-submit::after {
content: '';
position: absolute;
top: -50%;
left: -60%;
width: 20%;
height: 200%;
background: rgba(255, 255, 255, 0.4);
transform: rotate(30deg);
animation: shimmer 3s infinite;
}

@keyframes shimmer {
0% { left: -60%; }
20% { left: 120%; }
100% { left: 120%; }
}

.checkbox-group {
display: flex;
align-items: center;
margin-bottom: 20px;
color: #eee;
font-size: 0.8rem;
}

.checkbox-group input {
margin-right: 10px;
accent-color: #d4af37;
}

@media (max-width: 600px) {
.contact-card {
    padding: 40px 25px;
}
.header-box h2 { font-size: 1.4rem; }
}
@media (max-width: 603px) {
.img-box
{
    min-width: 100%;
}
.text-box
{
     min-width: 100%;
}
.hero
{
   background-size: cover !important;
}
.tab-btn
{
    width: 100%;
}
.sec-title h2 {
    font-size: 33px;
}
}
:root {
--vinhomes-green: #0a3d2c;
--gold-primary: #d4af37;
--gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
--bg-light: #f4f7f6;
--text-dark: #333;
}



.table-header {
text-align: center;
margin-bottom: 30px;
}

.table-header h2 {
color: var(--vinhomes-green);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 10px;
font-size: 1.8rem;
}

.table-header p {
color: #666;
font-style: italic;
}

/* Table Styling */
table {
width: 100%;
border-collapse: collapse;

overflow: hidden;
border-radius: 8px;
}

thead {
background-color: #0a3d2c !important;
color: white;
}

th {
padding: 15px;
text-align: left;
text-transform: uppercase;
font-size: 13px;
letter-spacing: 1px;
}

td {
padding: 15px;
border-bottom: 1px solid #eee;
vertical-align: middle;
}

tbody tr:hover {
background-color: #f9fbf9;
}

/* Progress Bar */
.progress-container {
width: 100%;
background: #e0e0e0;
border-radius: 10px;
height: 8px;
position: relative;
margin-top: 5px;
}

.progress-bar {
height: 100%;
border-radius: 10px;
background: var(--gold-gradient);
transition: width 1s ease-in-out;
}

.percent-text {
font-size: 0.85rem;
font-weight: bold;
color: var(--vinhomes-green);
display: block;
margin-bottom: 4px;
}

/* Status Badges */
.badge {
padding: 5px 12px;
border-radius: 20px;
font-size: 0.75rem;
font-weight: bold;
text-transform: uppercase;
}

.status-done { background: #d4edda; color: #155724; }
.status-doing { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; display: block;font-size: 13px;
min-width: 179px;    text-align: center;}
.status-plan { background: #e2e3e5; color: #383d41; }

/* Icon styling */
.item-name {
font-weight: 600;
color: var(--vinhomes-green);
align-items: center;
gap: 10px;
}

.item-name i {
color: var(--gold-primary);
width: 20px;
}

/* Mobile Responsive (Card View) */
@media screen and (max-width: 768px) {
.container { padding: 15px; }

thead { display: none; } /* Ẩn tiêu đề bảng trên mobile */

table, tbody, tr, td {
    display: block;
    width: 100%;
}

tr {
    margin-bottom: 20px;
    border: 1px solid var(--gold-primary);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    border-bottom: 1px inset #eee;
}

td:last-child { border-bottom: none; }

/* Tạo nhãn tiêu đề giả bằng pseudo-element */
td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 45%;
    text-align: left;
    font-weight: bold;
    color: var(--vinhomes-green);
    text-transform: uppercase;
    font-size: 0.8rem;
}

}
:root {
    --vinhomes-green: #0a3d2c;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
    --gold-dark: #b8860b;
    --bg-glass: rgba(255, 255, 255, 0.95);
}
.item-name { justify-content: flex-end; }
.progress-container { margin-left: auto; width: 100%; }
.legal-container {
    max-width: 1300px;
    margin: 40px auto;
    background: var(--bg-glass);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.legal-header {
    background: var(--vinhomes-green);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.legal-header h2 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
}

.legal-header p {
    margin-top: 10px;
    opacity: 0.8;
    font-weight: 300;
}

/* Table Style */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.legal-table thead {
    background: #f8fcfb !important;
}

.legal-table th {
    padding: 18px 15px;
    text-align: left;
    color: var(--vinhomes-green);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-bottom: 2px solid #e9ecef;
}

.legal-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-table tr:hover {
    background-color: #fdfbf4;
}

/* Badge Status */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.status-badge i {
    margin-right: 5px;
}

/* Document Link */
.doc-link {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.doc-link:hover {
    text-decoration: underline;
    color: var(--vinhomes-green);
}

/* Icon styling */
.icon-box {
    color: var(--gold-dark);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-table thead {
        display: none; /* Ẩn tiêu đề bảng */
    }

    .legal-table, .legal-table tbody, .legal-table tr, .legal-table td {
        display: block;
        width: 100%;
    }

    .legal-table tr {
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    }

    .legal-table td {
        text-align: right;
        padding: 12px 15px;
        position: relative;
        border-bottom: 1px dashed #eee;
    }

    .legal-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        text-align: left;
        font-weight: 700;
        color: var(--vinhomes-green);
        font-size: 0.8rem;
        text-transform: uppercase;
    }

    .legal-table td:last-child {
        border-bottom: none;
    }
}
/* Toàn bộ CSS được đóng gói với class riêng biệt để tránh trùng lặp */
.xyz-premium-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
font-family: 'Segoe UI', Roboto, sans-serif;
}

/* Hiệu ứng nút bấm tỏa sáng */
.xyz-premium-button {
position: relative;
padding: 16px 45px;
font-size: 18px;
font-weight: 700;
color: #ffffff;
background: linear-gradient(45deg, #ff3d00, #ffeb3b);
background-size: 200% 200%;
border: none;
border-radius: 12px;
cursor: pointer;
outline: none;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(255, 61, 0, 0.4);
animation: xyz-premium-gradient-animation 3s ease infinite;
}

/* Hiệu ứng hào quang tỏa sáng xung quanh nút */
.xyz-premium-button::after {
content: "";
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
z-index: -1;
background: linear-gradient(45deg, #ff3d00, #ffeb3b, #ff3d00);
background-size: 400%;
border-radius: 15px;
opacity: 0.7;
filter: blur(12px);
animation: xyz-premium-glow-animation 20s linear infinite;
}

/* Hiệu ứng khi đang chạy đếm ngược (vô hiệu hóa nút) */
.xyz-premium-button:disabled {
background: #555 !important;
cursor: not-allowed;
box-shadow: none;
}
.xyz-premium-button:disabled::after {
display: none;
}

.xyz-premium-button:hover:not(:disabled) {
transform: scale(1.05);
box-shadow: 0 6px 20px rgba(255, 61, 0, 0.6);
}

/* Khu vực hiển thị mã code sau khi xong */
.xyz-premium-result-box {
margin-top: 25px;
padding: 15px 30px;
border: 2px dashed #ff3d00;
background-color: #fff4f1;
color: #d32f2f;
font-size: 22px;
font-weight: bold;
border-radius: 8px;
display: none; /* Ẩn mặc định */
animation: xyz-premium-fade-in 0.5s ease-out;
}

/* Các Keyframes hiệu ứng */
@keyframes xyz-premium-gradient-animation {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

@keyframes xyz-premium-glow-animation {
0% { background-position: 0 0; }
50% { background-position: 400% 0; }
100% { background-position: 0 0; }
}

@keyframes xyz-premium-fade-in {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}