:root {
    --primary-yellow: #FFD700; /* Yellow based on electric branding */
    --primary-black: #0F0F0F;
    --text-white: #FFFFFF;
    --overlay-opacity: rgba(0, 0, 0, 0.70); /* 70% black overlay */
    
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.4);
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    /* Hide scrollbar for clean look, but allow scrolling if needed */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* Video Background */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bg-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-opacity);
    backdrop-filter: blur(2px); /* Slight blur for premium feel */
}

/* Main Layout */
.content-wrapper {
    width: 100%;
    max-width: 480px; /* Mobile first optimal width */
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    z-index: 1;
}

/* Header Section */
.header {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.brand-logo {
    width: 110px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(var(--shadow-glow));
    border-radius: 50%; /* In case it needs rounding, otherwise harmless */
}

.brand-description {
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 90%;
    margin-inline: auto;
}

.brand-phone {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
}
.brand-phone i {
    margin-right: 6px;
    color: var(--primary-yellow);
}


/* Links Container */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2.5rem;
}

/* Buttons */
.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.1rem 1.5rem;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px; /* Pill shape */
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.link-btn .icon {
    position: absolute;
    left: 1.5rem;
    font-size: 1.3rem;
}

.link-btn:hover, .link-btn:active {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
    background-color: #ffde33; /* Slightly brighter on hover */
}

/* Footer */
.footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer:hover {
    opacity: 1;
}

.footer-logo {
    width: 30px;
    height: auto;
    filter: grayscale(100%) brightness(200%); /* Make it white-ish */
}

.footer p {
    font-size: 0.75rem;
    font-weight: 400;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) calc(0.3s) forwards;
    opacity: 0;
    transform: translateY(20px);
}

.animate-fade-in-delayed {
    animation: fadeIn 1s ease-out calc(0.8s) forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
