:root {
    --primary-color: #7a0000; /* Dark Red derived from ZION logo */
    --hover-bg: #f8f8f8;
    --text-color: #333333;
    --bg-color: #ffffff;
    --footer-text: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.logo-header {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.brand-logo-main {
    max-width: 280px;
    height: auto;
    object-fit: contain;
}

.links-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 24px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
}

.link-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(122, 0, 0, 0.15);
}

.link-btn i {
    margin-left: 10px;
    font-size: 16px;
}

/* VIP Premium Styling & Shimmer Effect */
.vip-btn {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(122, 0, 0, 0.2);
    overflow: hidden;
}

.vip-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: luxuriousShimmer 4s infinite;
}

@keyframes luxuriousShimmer {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Footer Section */
.site-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.brands-band {
    width: 100%;
    padding: 30px 0;
    background-color: var(--bg-color);
    border-top: 1px solid #f0f0f0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
}

.brands-band::before, .brands-band::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
}

.brands-band::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.brands-band::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

.brands-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brands-group {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

.watch-brand {
    height: 24px;
    object-fit: contain;
    transition: var(--transition);
}

.watch-brand.opacity-60 {
    opacity: 0.6;
}

.watch-brand:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.footer-copyright {
    background-color: var(--primary-color);
    color: var(--footer-text);
    text-align: center;
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .brands-band {
        padding: 20px 0;
    }
    
    .brands-group {
        gap: 30px;
        padding-right: 30px;
    }
    
    .watch-brand {
        height: 18px;
    }
    
    .content-container {
        padding: 40px 20px;
    }
    
    .link-btn {
        font-size: 12px;
        padding: 14px 15px;
        white-space: normal;
        text-align: center;
    }
    
    .brand-logo-main {
        max-width: 220px;
        height: auto;
    }
}
