/* Center search bar only on Z7 TV page */
.z7tv-search-nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
.z7tv-search-container-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    box-shadow: none;
}
.z7tv-search-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 600px) {
    .search-nav {
        padding: 8px 0;
    }
    .search-container {
        max-width: 100% !important;
        margin: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        position: relative;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .search-input {
        font-size: 16px;
        padding: 8px 12px;
        border-radius: 15px;
        width: 100% !important;
        flex: 1 1 0%;
        min-width: 0;
        -webkit-text-size-adjust: 100%;
        -webkit-appearance: none;
        appearance: none;
        -webkit-tap-highlight-color: transparent;
    }
}
/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:wght@400;500;600;700&family=Rajdhani:wght@400;500;600;700&family=Audiowide&family=Iceberg&display=swap');

/* Browser compatibility and consistent rendering */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color-scheme: dark;
}

/* Reduce animation complexity on lower-end devices */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Reset and Base Styles with Cross-Browser Compatibility */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

/* Ensure consistent font rendering across browsers */
body, 
input, 
textarea, 
select, 
button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Universe Galaxy Background - Cross-browser compatible */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    /* Cross-browser performance optimizations */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    min-height: 100vh;
    /* Force hardware acceleration */
    will-change: transform;
}

/* Home page background fade: logo red -> logo blue -> black -> logo red -> logo blue */
body.home-page {
    background: #000000;
}

/* Zavier page uses a solid black backdrop */
body.zavier-page {
    background: #000000 url('../images/made-by-zavier/ZavierLogo.PNG') center top / 360px auto repeat scroll !important;
}

@media (max-width: 768px) {
    body.zavier-page {
        background: #000000 url('../images/made-by-zavier/ZavierLogo.PNG') center top / 260px auto repeat scroll !important;
    }
}

@media (max-width: 480px) {
    body.zavier-page {
        background: #000000 url('../images/made-by-zavier/ZavierLogo.PNG') center top / 220px auto repeat scroll !important;
    }
}

body.zavier-page::before,
body.zavier-page::after {
    display: none;
}

/* 7 Keyz page: black backdrop with animated stars like home page */
body.beats-page {
    background: #000000;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 0, 0, 0.8), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(0, 255, 0, 0.6), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(0, 100, 255, 0.7), transparent),
        radial-gradient(1px 1px at 15px 80px, rgba(255, 215, 0, 0.9), transparent),
        radial-gradient(2px 2px at 70px 20px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 85px 60px, rgba(255, 20, 147, 0.6), transparent),
        radial-gradient(2px 2px at 30px 50px, rgba(50, 205, 50, 0.7), transparent),
        radial-gradient(1px 1px at 60px 10px, rgba(255, 69, 0, 0.8), transparent);
    background-repeat: repeat;
    background-size: 120px 100px;
    animation: galaxyMove 250s linear infinite, starsTwinkle 15s ease-in-out infinite;
    z-index: -1;
    opacity: 0.6;
    /* Cross-browser performance optimizations */
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(1px 1px at 110px 25px, rgba(138, 43, 226, 0.7), transparent),
        radial-gradient(2px 2px at 45px 85px, rgba(255, 165, 0, 0.6), transparent),
        radial-gradient(1px 1px at 75px 45px, rgba(0, 191, 255, 0.8), transparent),
        radial-gradient(2px 2px at 25px 65px, rgba(255, 105, 180, 0.7), transparent),
        radial-gradient(1px 1px at 95px 15px, rgba(144, 238, 144, 0.6), transparent),
        radial-gradient(2px 2px at 55px 75px, rgba(255, 255, 224, 0.8), transparent);
    background-repeat: repeat;
    background-size: 140px 110px;
    animation: galaxyMove 350s linear infinite reverse, starsTwinkle2 18s ease-in-out infinite 3s;
    z-index: -1;
    opacity: 0.25;
    /* Performance optimizations */
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

body.beats-page::before {
    background:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 0, 0, 0.8), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(0, 255, 0, 0.6), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(0, 100, 255, 0.7), transparent),
        radial-gradient(1px 1px at 15px 80px, rgba(255, 215, 0, 0.9), transparent),
        radial-gradient(2px 2px at 70px 20px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 85px 60px, rgba(255, 20, 147, 0.6), transparent),
        radial-gradient(2px 2px at 30px 50px, rgba(50, 205, 50, 0.7), transparent),
        radial-gradient(1px 1px at 60px 10px, rgba(255, 69, 0, 0.8), transparent);
    background-repeat: repeat;
    background-size: 120px 100px;
    animation: galaxyMove 250s linear infinite, starsTwinkle 15s ease-in-out infinite;
    opacity: 0.6;
}

body.beats-page::after {
    background:
        radial-gradient(1px 1px at 110px 25px, rgba(138, 43, 226, 0.7), transparent),
        radial-gradient(2px 2px at 45px 85px, rgba(255, 165, 0, 0.6), transparent),
        radial-gradient(1px 1px at 75px 45px, rgba(0, 191, 255, 0.8), transparent),
        radial-gradient(2px 2px at 25px 65px, rgba(255, 105, 180, 0.7), transparent),
        radial-gradient(1px 1px at 95px 15px, rgba(144, 238, 144, 0.6), transparent),
        radial-gradient(2px 2px at 55px 75px, rgba(255, 255, 224, 0.8), transparent);
    background-repeat: repeat;
    background-size: 140px 110px;
    animation: galaxyMove 350s linear infinite reverse, starsTwinkle2 18s ease-in-out infinite 3s;
    opacity: 0.25;
}

@keyframes galaxyMove {
    from {
        transform: translateX(0px);
    }
    to {
        transform: translateX(-200px);
    }
}

@keyframes starsTwinkle {
    0% {
        opacity: 0.3;
    }
    25% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.5;
    }
    75% {
        opacity: 0.9;
    }
    100% {
        opacity: 0.3;
    }
}

@keyframes starsTwinkle2 {
    0% {
        opacity: 0.7;
    }
    20% {
        opacity: 0.3;
    }
    60% {
        opacity: 0.9;
    }
    80% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.7;
    }
}

@keyframes starsTwinkle3 {
    0% {
        opacity: 0.5;
    }
    30% {
        opacity: 0.9;
    }
    70% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes starsTwinkle4 {
    0% {
        opacity: 0.4;
    }
    40% {
        opacity: 0.8;
    }
    65% {
        opacity: 0.6;
    }
    85% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.4;
    }
}

/* Content sections with galaxy-friendly backgrounds */
.hero, .services, .portfolio, .about, .contact {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.86) 0%, rgba(10, 10, 18, 0.9) 45%, rgba(0, 0, 0, 0.88) 100%) !important;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    margin: 20px 0;
    padding: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* About section darker background for Safari compatibility */
.about {
    background: rgba(0, 0, 0, 0.8) !important;
}

/* Hero section special styling */
.hero {
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

/* Services Hero Section - Professional layout and positioning */
.services-hero {
    background: linear-gradient(145deg, #000000 0%, #080812 50%, #000000 100%) !important;
    padding: 60px 0 60px;
    text-align: center;
    position: relative;
    min-height: auto;
}

.services-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.services-hero-subtitle {
    font-size: 0.35rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    font-weight: 600;
}

.services-hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #FFD700;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
    backdrop-filter: blur(10px);
}

.hero-actions {
    margin-top: 0.5rem;
}

html {
    scroll-behavior: smooth;
}

/* Container with galaxy-friendly background */
.container {
        font-size: 1.55rem;
        line-height: 1.15;
        max-width: 100%;
        padding: 0 0.25rem;
        word-break: break-word;
    margin: 0 auto;

    .beats-hero .services-hero-title {
        font-size: 1.45rem;
        line-height: 1.1;
    }
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Royal Colors for Z7 Branding */
.z-red {
    color: #8B0000;
    font-size: 2rem;
    font-weight: 800;
}

.seven-blue {
    color: #191970;
    font-size: 2rem;
    font-weight: 800;
}

@keyframes globeSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes colorPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Header & Navigation with galaxy compatibility */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    display: inline-block;
    text-decoration: none;
}

.nav-logo .brand-text {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Orbitron', 'Exo 2', 'Rajdhani', monospace;
    animation: brandGlow 3s ease-in-out infinite;
    letter-spacing: 1px;
}

.nav-logo .brand-text .z-red,
.nav-logo .brand-text .seven-blue {
    display: inline;
    transition: all 0.3s ease;
}

.nav-logo .brand-text .z-red {
    color: #8B0000;
    animation: colorAlternateZ 6s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.3);
}

.nav-logo .brand-text .seven-blue {
    color: #191970;
    animation: colorAlternateSeven 6s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(25, 25, 112, 0.3);
}

/* Navigation universe text - starts immediately */
.nav-logo .brand-text .universe-text {
    color: #000000;
    font-weight: 600;
    font-size: 0.7rem;
    margin-left: 4px;
    font-family: 'Orbitron', 'Exo 2', 'Rajdhani', monospace;
    letter-spacing: 2px;
    text-shadow: none;
    animation: none;
    transition: all 0.3s ease;
}

@keyframes universeColorCycle {
    0%, 30% { 
        color: #f3f6ff;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.45);
    }
    35%, 65% { 
        color: #9cb7ff;
        text-shadow: 0 0 9px rgba(96, 126, 255, 0.55);
    }
    70%, 100% { 
        color: #ff9090;
        text-shadow: 0 0 9px rgba(199, 0, 0, 0.45);
    }
}

/* General universe-text animation for all instances */
.universe-text {
    animation: colorCycle 12s ease-in-out infinite;
    animation-delay: 3s; /* Default delay */
    transition: all 0.3s ease;
}

/* Footer copyright Z7 Universe - animated as one unit */
.footer-bottom .footer-brand-animated {
    animation: colorCycle 12s ease-in-out infinite;
    animation-delay: 3s;
    transition: all 0.3s ease;
}

/* Footer copyright Z7 text styling - override global colors for animation */
.footer-bottom .footer-brand-animated .z-red {
    color: inherit !important;
    font-weight: 600 !important;
    font-size: 0.9em !important;
}

.footer-bottom .footer-brand-animated .seven-blue {
    color: inherit !important;
    font-weight: 600 !important;
    font-size: 0.9em !important;
}

.footer-bottom .footer-brand-animated .universe-text {
    color: inherit !important;
}

/* Galaxy Stars Effect */
.galaxy-container {
    position: relative;
    display: inline-block;
}

.galaxy-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    opacity: 0;
    animation: starBlink 3.5s ease-in-out infinite;
    /* Performance optimizations */
    will-change: opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Star Colors - Christmas Theme */
.star-red {
    background: #DC143C;
    box-shadow: 0 0 3px #DC143C, 0 0 6px #DC143C;
    animation-delay: 0s;
}

.star-blue {
    background: #228B22;
    box-shadow: 0 0 3px #228B22, 0 0 6px #228B22;
    animation-delay: 0.5s;
}

.star-green {
    background: #228B22;
    box-shadow: 0 0 3px #228B22, 0 0 6px #228B22;
    animation-delay: 1s;
}

.star-pink {
    background: #B22222;
    box-shadow: 0 0 3px #B22222, 0 0 6px #B22222;
    animation-delay: 1.5s;
}

.star-purple {
    background: #32CD32;
    box-shadow: 0 0 3px #32CD32, 0 0 6px #32CD32;
    animation-delay: 2s;
}

.star-gold {
    background: #FFD700;
    box-shadow: 0 0 3px #FFD700, 0 0 6px #FFD700;
    animation-delay: 2.5s;
}

.star-white {
    background: #DC143C;
    box-shadow: 0 0 3px #DC143C, 0 0 6px #DC143C;
    animation-delay: 0.3s;
}

/* Star Blinking Animation */
@keyframes starBlink {
    0%, 100% { 
        opacity: 0;
        transform: scale(0.8);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Star Twinkling Animation */
@keyframes starTwinkle {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
        filter: brightness(1);
    }
    25% { 
        opacity: 1;
        transform: scale(1.3);
        filter: brightness(1.5);
    }
    50% { 
        opacity: 0.5;
        transform: scale(0.9);
        filter: brightness(0.8);
    }
    75% { 
        opacity: 0.9;
        transform: scale(1.1);
        filter: brightness(1.2);
    }
}

.star-twinkle {
    animation: starTwinkle 2s ease-in-out infinite;
}

.footer-brand .brand-text {
    font-size: 1.8rem;
    font-weight: 700;
}

/* Footer brand universe text - delayed */
.footer-brand .brand-text .universe-text {
    color: #999;
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 2px;
    animation: colorCycle 12s ease-in-out infinite;
    animation-delay: 8s;
    transition: all 0.3s ease;
}

.nav-logo span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* Logo Image Styling */
.logo-image {
    height: 50px;
    width: auto;
    margin-right: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.footer-logo-image {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    opacity: 0.9;
}

/* Hero TikTok Live Section */
.hero-live-section {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1.5s ease-out 0.5s both;
    padding: 0 20px;
}

.youtube-release-section {
    margin-top: 0.45rem;
    display: flex;
    justify-content: center;
}

.youtube-release-section .live-banner {
    width: min(100%, 760px);
    max-width: 760px;
    padding: 0.65rem 14px;
    margin: 0 auto;
}

.youtube-release-section .live-header {
    margin-bottom: 0.55rem;
}

.youtube-release-section .live-indicator {
    padding: 0.45rem 0.7rem;
    gap: 0.4rem;
}

.youtube-release-section .premiere-badge {
    margin-bottom: 0.45rem;
    padding: 0.22rem 0.7rem;
    font-size: 0.62rem;
}

.youtube-release-section .live-title {
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.youtube-release-section .countdown-container {
    margin-bottom: 0.55rem;
}

.youtube-release-section .countdown-text {
    font-size: 0.62rem;
    margin-bottom: 0.22rem;
}

.youtube-release-section .countdown-timer {
    font-size: 1.05rem;
    padding: 0.22rem 0.55rem;
    margin-bottom: 0.2rem;
}

.youtube-release-section .countdown-schedule {
    font-size: 0.68rem;
}

.youtube-release-section .upnext-btn {
    padding: 0.5rem 1rem;
    font-size: 0.74rem;
}

/* Keep this section static: no pulsing/bouncing */
.youtube-release-section .live-banner,
.youtube-release-section .live-banner::before,
.youtube-release-section .youtube-release-banner,
.youtube-release-section .camera-icon,
.youtube-release-section .live-dot,
.youtube-release-section .live-dot-camera,
.youtube-release-section .youtube-indicator .live-dot {
    animation: none !important;
}

.youtube-release-section .youtube-indicator .live-dot {
    transform: none;
}

.live-banner {
    background: linear-gradient(135deg, #0a0a0a 0%, #001f7f 45%, #c70000 100%);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite, liveBounce 6s ease-in-out infinite;
    padding: 1rem;
    border-radius: 18px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.live-banner::before {
    content: '';
    position: absolute;
    top: -45%;
    left: -45%;
    width: 190%;
    height: 190%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.18), transparent 45%);
    animation: shimmer 4.5s linear infinite;
    pointer-events: none;
}

.live-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(199, 0, 0, 0.25);
    padding: 0.6rem 0.85rem;
    border-radius: 22px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.live-dot {
    width: 12px;
    height: 12px;
    background-color: #ff0000 !important;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
}

.live-dot-camera {
    background-color: #ffffff !important;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.7);
    animation: cameraDotPulse 1.8s ease-in-out infinite;
}

/* Up Next dot color cycle (YouTube) - blue -> red -> white -> gold */
@keyframes upnextColorCycle {
    0% {
        background-color: #191970; /* blue */
        box-shadow: 0 0 14px rgba(25, 25, 112, 0.8);
        transform: scale(1);
    }
    25% {
        background-color: #ff0000; /* red */
        box-shadow: 0 0 16px rgba(255, 0, 0, 0.85);
        transform: scale(1.05);
    }
    50% {
        background-color: #ffffff; /* white */
        box-shadow: 0 0 18px rgba(255, 255, 255, 0.95);
        transform: scale(1.1);
    }
    75% {
        background-color: #FFD700; /* gold */
        box-shadow: 0 0 18px rgba(255, 215, 0, 0.9);
        transform: scale(1.05);
    }
    100% {
        background-color: #191970; /* back to blue */
        box-shadow: 0 0 14px rgba(25, 25, 112, 0.8);
        transform: scale(1);
    }
}

/* Apply the color cycle specifically to the YouTube indicator dot */
.youtube-indicator .live-dot {
    background-color: #191970 !important;
    animation: cameraDotPulse 1.8s ease-in-out infinite, upnextColorCycle 4s linear infinite;
}

/* Navigation Live Dot */
.live-dot-nav {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #ff0000;
    border-radius: 50%;
    animation: livePulseColors 3s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 0, 0, 0.6);
    margin-left: 3px;
    vertical-align: middle;
}

/* Footer Live Dot - Blue with different timing */
.live-dot-footer {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #191970;
    border-radius: 50%;
    animation: livePulseColorsFooter 4s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(25, 25, 112, 0.6);
    margin-left: 3px;
    vertical-align: middle;
}

.live-star-nav,
.live-star-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
    margin-left: 3px;
    vertical-align: middle;
    text-shadow: 0 0 6px rgba(255, 0, 0, 0.6);
}

.live-star-nav {
    font-size: 0.76rem;
    color: #ff0000;
    animation: liveStarFooterPulse 10s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.75);
    position: relative;
    transform: translateY(0.08em);
    line-height: 1;
}

.live-star-footer {
    color: #191970;
    animation: liveStarFooterPulse 10s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(25, 25, 112, 0.75);
}

.live-star-nav,
.live-star-footer {
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.live-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tiktok-icon {
    font-size: 2rem;
    animation: tikTokSpin 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.live-content {
    color: white;
}

.live-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.premiere-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.18);
    color: #FFD700;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 215, 0, 0.45);
    box-shadow: 0 8px 18px rgba(255, 215, 0, 0.12);
}

.countdown-container {
    margin-bottom: 0.8rem;
}

.countdown-text {
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
    opacity: 0.9;
    font-weight: 500;
}

.countdown-timer {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    letter-spacing: 1.1px;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
    margin-bottom: 0.35rem;
    background: rgba(199, 0, 0, 0.18);
    padding: 0.35rem 0.75rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.countdown-schedule {
    font-size: 0.75rem;
    opacity: 0.95;
    font-weight: 700;
    color: #ffd700;
}

.live-join-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(139, 0, 0, 0.4);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.upnext-btn {
    display: inline-block;
    padding: 0.7rem 1.3rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(199, 0, 0, 0.95));
    color: #020202;
    text-decoration: none;
    border-radius: 18px;
    font-weight: 800;
    font-size: 0.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.upnext-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(199, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 1), rgba(199, 0, 0, 1));
}

.youtube-release-banner {
    background: linear-gradient(135deg, #05050a 0%, #001f7f 45%, #c70000 100%);
    background-size: 180% 180%;
    animation: liveBounce 5s ease-in-out infinite;
}

.camera-icon {
    font-size: 2rem;
    animation: cameraPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.live-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 0, 0, 0.4);
    background: rgba(25, 25, 112, 0.5);
}

.tiktok-preview-wrap {
    margin-top: 1.1rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.tiktok-preview-card {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    border-radius: 18px;
    padding: 0.9rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(25, 25, 112, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
}

.tiktok-preview-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(115deg, #ff1f3f, #00e5ff, #7c4dff, #39ff14, #ff1f3f);
    background-size: 300% 300%;
    animation: tiktokPreviewNeonBorder 14s linear infinite;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.tiktok-preview-title {
    margin: 0 0 0.7rem;
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.tiktok-preview-card .tiktok-embed {
    margin: 0 auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
    position: relative;
    z-index: 2;
}

.tiktok-preview-card .tiktok-embed iframe {
    max-width: 100% !important;
    width: 100% !important;
}

.tiktok-preview-title {
    position: relative;
    z-index: 2;
}

.tiktok-live-info {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    z-index: 2;
}

.tiktok-live-info .live-title {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    color: #ff1a4a;
    text-shadow: 0 0 8px rgba(255, 26, 74, 0.6);
}

.tiktok-live-info .countdown-container {
    margin: 0.3rem 0;
}

.tiktok-live-info .countdown-label {
    font-size: 0.4rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
    opacity: 0.8;
}

.tiktok-live-info .countdown-timer {
    font-family: 'Courier New', monospace;
    font-size: 0.5rem;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
    margin: 0.2rem 0;
}

.tiktok-live-info .countdown-schedule {
    font-size: 0.35rem;
    color: #00ffff;
    text-shadow: 0 0 6px rgba(0, 255, 255, 0.4);
    margin-top: 0.2rem;
}

.tiktok-live-info .live-join-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.35rem;
    background: linear-gradient(135deg, #ff1a4a, #ff6ef7);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tiktok-live-info .live-join-btn:hover {
    background: linear-gradient(135deg, #ff6ef7, #ff1a4a);
    box-shadow: 0 0 15px rgba(255, 26, 74, 0.6);
}

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

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: buttonGlow 3s linear infinite;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes liveBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes tikTokSpin {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}

@keyframes buttonGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes cameraDotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.15);
        box-shadow: 0 0 22px rgba(255, 255, 255, 0.85);
    }
}

@keyframes livePulseColors {
    0% {
        background-color: #ff0000;
        box-shadow: 0 0 6px rgba(255, 0, 0, 0.6);
        opacity: 1;
        transform: scale(1);
    }
    33% {
        background-color: #191970;
        box-shadow: 0 0 6px rgba(25, 25, 112, 0.6);
        opacity: 0.8;
        transform: scale(1.2);
    }
    66% {
        background-color: #000000;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
        opacity: 0.6;
        transform: scale(1.1);
    }
    100% {
        background-color: #ff0000;
        box-shadow: 0 0 6px rgba(255, 0, 0, 0.6);
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes livePulseColorsFooter {
    0% {
        background-color: #191970;
        box-shadow: 0 0 6px rgba(25, 25, 112, 0.6);
        opacity: 1;
        transform: scale(1);
    }
    33% {
        background-color: #000000;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
        opacity: 0.7;
        transform: scale(1.3);
    }
    66% {
        background-color: #ff0000;
        box-shadow: 0 0 6px rgba(255, 0, 0, 0.6);
        opacity: 0.5;
        transform: scale(1.1);
    }
    100% {
        background-color: #191970;
        box-shadow: 0 0 6px rgba(25, 25, 112, 0.6);
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes liveStarNavPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        color: #ff0000;
        text-shadow: 0 0 12px rgba(255, 0, 0, 0.8);
    }
    33% {
        opacity: 0.9;
        transform: scale(1.05);
        color: #ffa0a0;
        text-shadow: 0 0 14px rgba(255, 100, 100, 0.8);
    }
    66% {
        opacity: 0.65;
        transform: scale(1.15);
        color: #ffffff;
        text-shadow: 0 0 16px rgba(255, 0, 0, 0.9);
    }
}

@keyframes liveStarFooterPulse {
    0% {
        opacity: 1;
        transform: scale(1);
        color: #ff0000;
        text-shadow: 0 0 14px rgba(255, 0, 0, 0.8);
    }
    20% {
        opacity: 0.95;
        transform: scale(1.04);
        color: #cc0033;
        text-shadow: 0 0 13px rgba(204, 0, 51, 0.75);
    }
    40% {
        opacity: 0.9;
        transform: scale(1.08);
        color: #191970;
        text-shadow: 0 0 14px rgba(25, 25, 112, 0.8);
    }
    60% {
        opacity: 0.85;
        transform: scale(1.12);
        color: #000000;
        text-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
    }
    80% {
        opacity: 0.9;
        transform: scale(1.1);
        color: #ffbf00;
        text-shadow: 0 0 16px rgba(255, 191, 0, 0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        color: #ff0000;
        text-shadow: 0 0 14px rgba(255, 0, 0, 0.8);
    }
}

/* Brand Logo Animations */
@keyframes brandGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 5px rgba(139, 0, 0, 0.2));
    }
    50% { 
        filter: drop-shadow(0 0 15px rgba(25, 25, 112, 0.4));
    }
}

@keyframes colorCycle {
    0% { 
        color: #000000;
    }
    20% { 
        color: #8B0000;
    }
    40% { 
        color: #191970;
    }
    60% { 
        color: #4B0082;
    }
    80% { 
        color: #2F4F4F;
    }
    100% { 
        color: #000000;
    }
}

@keyframes letterPulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 10px rgba(139, 0, 0, 0.3);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
    }
}

/* Alternating color animations for Z and 7 */
@keyframes colorAlternateZ {
    0%, 45% { 
        color: #8B0000;
        text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
    }
    50%, 95% { 
        color: #191970;
        text-shadow: 0 0 10px rgba(25, 25, 112, 0.5);
    }
    100% { 
        color: #8B0000;
        text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
    }
}

@keyframes colorAlternateSeven {
    0%, 45% { 
        color: #191970;
        text-shadow: 0 0 10px rgba(25, 25, 112, 0.5);
    }
    50%, 95% { 
        color: #8B0000;
        text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
    }
    100% { 
        color: #191970;
        text-shadow: 0 0 10px rgba(25, 25, 112, 0.5);
    }
}

@keyframes colorCycle {
    0% { 
        color: #8B0000;
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
    }
    25% { 
        color: #191970;
        opacity: 1;
        text-shadow: 0 0 10px rgba(25, 25, 112, 0.5);
    }
    50% { 
        color: #B8860B;
        opacity: 1;
        text-shadow: 0 0 15px rgba(184, 134, 11, 0.6);
    }
    75% { 
        color: #ffffff;
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
    100% { 
        color: #8B0000;
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
    }
}

/* Hover effect for the entire brand */
.nav-logo:hover .brand-text .z-red {
    transform: rotateY(360deg) scale(1.1);
    transition: transform 0.8s ease;
}

.nav-logo:hover .brand-text .seven-blue {
    transform: rotateX(360deg) scale(1.1);
    transition: transform 0.8s ease 0.2s;
}

.nav-logo:hover .brand-text .universe-text {
    color: #000000;
    transform: translateX(5px);
    transition: all 0.8s ease 0.4s;
}

/* Animated iPhone Icon */
.phone-icon {
    margin-left: 15px;
    cursor: pointer;
    display: inline-block;
    animation: phoneFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 20;
}

.nav-logo {
    position: relative;
    z-index: 20;
}

.nav-link::after {
    z-index: 0;
}

/* Professional Phone Tooltip */
.phone-tooltip {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.phone-tooltip::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0, 0, 0, 0.9);
}

.phone-icon:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-3px);
}

.phone-icon:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-3px);
}

/* Small TAP text on phone */
.phone-tap-text {
    position: absolute;
    bottom: 11px;
    left: 0;
    right: 0;
    font-family: 'Audiowide', 'Orbitron', monospace;
    font-size: 7px;
    font-weight: 600;
    color: #00ffff;
    text-shadow: 0 0 4px rgba(0, 255, 255, 0.8);
    letter-spacing: 0.3px;
    animation: phoneScrollText 4s linear infinite;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
    line-height: 1.2;
}

.red-dot {
    display: inline-block;
    width: 2px;
    height: 2px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-right: 2px;
    animation: blinkDot 1s ease-in-out infinite;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

@keyframes blinkDot {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes phoneScrollText {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Small Z7 PNG logo in navigation Contact */
.nav-contact-logo {
    height: 28px;
    width: auto;
    margin-left: 8px;
    opacity: 0.8;
    transition: all 0.3s ease;
    animation: navLogoSpinY 8s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    backface-visibility: visible;
    top: -1px; /* Slight vertical separation from text baseline */
}

@keyframes navLogoSpinY {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes navLogoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-1px) rotate(2deg);
    }
    50% {
        transform: translateY(0px) rotate(0deg);
    }
    75% {
        transform: translateY(-0.5px) rotate(-1deg);
    }
}

.nav-link:hover .nav-contact-logo {
    opacity: 1;
    animation-play-state: paused;
    transform: scale(1.1) rotateY(0deg) rotateZ(5deg);
    filter: drop-shadow(0 4px 8px rgba(139, 0, 0, 0.3)) 
            drop-shadow(0 0 6px rgba(25, 25, 112, 0.3));
}

/* Footer Z7 PNG logo */
.footer-logo {
    height: 40px;
    width: auto;
    margin-left: 2px;
    vertical-align: middle;
    opacity: 0.7;
    transition: all 0.3s ease;
    animation: footerLogoRotateY 15s linear infinite;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
    transform-style: preserve-3d;
    backface-visibility: visible;
}

@keyframes footerLogoRotateY {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.15);
    filter: drop-shadow(0 3px 6px rgba(139, 0, 0, 0.4)) 
            drop-shadow(0 0 4px rgba(25, 25, 112, 0.4));
    animation-play-state: running;
}

/* Portfolio Z7 PNG logo */
.portfolio-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    z-index: 2;
    transform-style: preserve-3d;
    backface-visibility: visible;
}

/* Individual portfolio logo rotations with different timing */
.portfolio-item:nth-child(1) .portfolio-logo {
    animation: portfolioRotateY1 15s linear infinite;
}

.portfolio-item:nth-child(2) .portfolio-logo {
    animation: portfolioRotateY2 18s linear infinite;
    animation-delay: 2s;
}

.portfolio-item:nth-child(3) .portfolio-logo {
    animation: portfolioRotateY3 16s linear infinite;
    animation-delay: 4s;
}

.portfolio-item:nth-child(4) .portfolio-logo {
    animation: portfolioRotateY4 20s linear infinite;
    animation-delay: 1s;
}

.portfolio-item:nth-child(5) .portfolio-logo {
    animation: portfolioRotateY5 17s linear infinite;
    animation-delay: 3s;
}

.portfolio-item:nth-child(6) .portfolio-logo {
    animation: portfolioRotateY6 19s linear infinite;
    animation-delay: 5s;
}

@keyframes portfolioRotateY1 {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes portfolioRotateY2 {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes portfolioRotateY3 {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes portfolioRotateY4 {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes portfolioRotateY5 {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes portfolioRotateY6 {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.portfolio-item:nth-child(7) .portfolio-logo {
    animation: portfolioRotateY7 14s linear infinite;
    animation-delay: 1.5s;
}

.portfolio-item:nth-child(8) .portfolio-logo {
    animation: portfolioRotateY8 9.5s linear infinite;
    animation-delay: 3.5s;
}

.portfolio-item:nth-child(9) .portfolio-logo {
    animation: portfolioRotateY9 15s linear infinite;
    animation-delay: 2.5s;
}

.portfolio-item:nth-child(10) .portfolio-logo {
    animation: portfolioRotateY10 10.5s linear infinite;
    animation-delay: 4.5s;
}

.portfolio-item:nth-child(11) .portfolio-logo {
    animation: portfolioRotateY11 16s linear infinite;
    animation-delay: 1.8s;
}

.portfolio-item:nth-child(12) .portfolio-logo {
    animation: portfolioRotateY12 12.5s linear infinite;
    animation-delay: 3.8s;
}

@keyframes portfolioRotateY7 {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes portfolioRotateY8 {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes portfolioRotateY9 {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes portfolioRotateY10 {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes portfolioRotateY11 {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes portfolioRotateY12 {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.portfolio-item:hover .portfolio-logo {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(139, 0, 0, 0.5)) 
            drop-shadow(0 0 6px rgba(25, 25, 112, 0.4));
    animation-play-state: running;
}

/* Portfolio TV Text */
.portfolio-text {
    position: absolute;
    top: 50px;
    right: 22.5px;
    font-family: 'Audiowide', 'Iceberg', 'Orbitron', monospace;
    font-size: 0.35rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(139, 0, 0, 0.6),
                 0 0 30px rgba(25, 25, 112, 0.4);
    letter-spacing: 3px;
    z-index: 3;
    animation: tvTextGlow 20s ease-in-out infinite;
    transition: all 0.3s ease;
    text-align: center;
    width: 25px;
    text-transform: uppercase;
}

@keyframes tvTextGlow {
    0% {
        color: #ffffff;
        text-shadow: 0 0 15px rgba(255, 255, 255, 1),
                     0 0 25px rgba(255, 255, 255, 0.8),
                     0 0 35px rgba(255, 255, 255, 0.6);
        transform: scale(1);
    }
    33% {
        color: #ff4444;
        text-shadow: 0 0 15px rgba(255, 68, 68, 1),
                     0 0 25px rgba(139, 0, 0, 0.8),
                     0 0 35px rgba(139, 0, 0, 0.6);
        transform: scale(1.05);
    }
    66% {
        color: #4444ff;
        text-shadow: 0 0 15px rgba(68, 68, 255, 1),
                     0 0 25px rgba(25, 25, 112, 0.8),
                     0 0 35px rgba(25, 25, 112, 0.6);
        transform: scale(1.05);
    }
    100% {
        color: #ffffff;
        text-shadow: 0 0 15px rgba(255, 255, 255, 1),
                     0 0 25px rgba(255, 255, 255, 0.8),
                     0 0 35px rgba(255, 255, 255, 0.6);
        transform: scale(1);
    }
}

/* Staggered TV text animations for natural feel */
.portfolio-item:nth-child(1) .portfolio-text {
    animation-delay: 0s;
}

.portfolio-item:nth-child(2) .portfolio-text {
    animation-delay: 3s;
}

.portfolio-item:nth-child(3) .portfolio-text {
    animation-delay: 6s;
}

.portfolio-item:nth-child(4) .portfolio-text {
    animation-delay: 9s;
}

.portfolio-item:nth-child(5) .portfolio-text {
    animation-delay: 12s;
}

.portfolio-item:nth-child(6) .portfolio-text {
    animation-delay: 15s;
}

.portfolio-item:nth-child(7) .portfolio-text {
    animation-delay: 2s;
}

.portfolio-item:nth-child(8) .portfolio-text {
    animation-delay: 5s;
}

.portfolio-item:nth-child(9) .portfolio-text {
    animation-delay: 8s;
}

.portfolio-item:nth-child(10) .portfolio-text {
    animation-delay: 11s;
}

.portfolio-item:nth-child(11) .portfolio-text {
    animation-delay: 14s;
}

.portfolio-item:nth-child(12) .portfolio-text {
    animation-delay: 17s;
}

.portfolio-item:hover .portfolio-text {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 1),
                 0 0 30px rgba(139, 0, 0, 1),
                 0 0 40px rgba(25, 25, 112, 0.8);
}

/* Portfolio image container positioning */
.portfolio-image {
    position: relative;
}

.iphone {
    width: 32px;
    height: 64px;
    background: linear-gradient(145deg, #1c1c1e, #000000);
    border-radius: 8px;
    border: 2px solid #2c2c2e;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 
                inset 0 1px 2px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.iphone-screen {
    width: 26px;
    height: 56px;
    background: linear-gradient(145deg, #000000, #1a1a1a);
    border-radius: 6px;
    position: absolute;
    top: 4px;
    left: 3px;
    display: flex;
    flex-direction: column;
    font-size: 6px;
    color: #ffffff;
    overflow: hidden;
    border: 1px solid #2c2c2e;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.8);
}

.status-bar {
    height: 8px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2px;
    font-size: 4px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3);
}

.signal-bars::before {
    content: '●●●';
    font-size: 3px;
}

.time {
    font-size: 4px;
    font-weight: bold;
}

.battery::before {
    content: '🔋';
    font-size: 4px;
}

.home-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2px;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 2px;
}

.app-icon {
    width: 8px;
    height: 8px;
    background: transparent;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5px;
    border: none;
    transition: all 0.2s ease;
}

.phone-app {
    background: linear-gradient(145deg, #34c759, #30d158);
    animation: phonePulse 2s ease-in-out infinite;
}

.messages-app {
    background: linear-gradient(145deg, #007aff, #0051d0);
}

.camera-app {
    background: linear-gradient(145deg, #8e8e93, #636366);
}

.photos-app {
    background: linear-gradient(145deg, #ff9500, #ff8c00);
}

.dock {
    display: flex;
    justify-content: space-around;
    background: transparent;
    border-radius: 4px;
    padding: 1px;
    margin-top: auto;
}

.dock-app {
    width: 6px;
    height: 6px;
    background: transparent;
    border-radius: 1px;
    font-size: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-indicator {
    width: 12px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes phonePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.7);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 0 2px rgba(52, 199, 89, 0.3);
    }
}

/* Removed green indicator light to prevent clash with phone emoji */
.iphone-screen::before {
    display: none;
}

/* White button at bottom */
.iphone-screen::after {
    content: '';
    width: 8px;
    height: 2px;
    background: linear-gradient(145deg, #ffffff, #cccccc);
    border-radius: 1px;
    position: absolute;
    bottom: 6px;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.8),
                inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* Blue blinking light - centered on top */
.blue-light {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5px;
    height: 2.5px;
    background: #0099ff;
    border-radius: 50%;
    animation: phoneLightBlink3 2.2s ease-in-out infinite;
    animation-delay: 1s;
    box-shadow: 0 0 4px rgba(0, 153, 255, 0.8);
}

@keyframes phoneLightBlink3 {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.4);
    }
}

/* Tiny blinking lights on the phone - aligned across top */
.iphone::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 3px;
    width: 3px;
    height: 3px;
    background: #00ff00;
    border-radius: 50%;
    animation: phoneLightBlink1 2s ease-in-out infinite;
    box-shadow: 0 0 4px rgba(0, 255, 0, 0.8);
}

.iphone::after {
    content: '';
    position: absolute;
    top: 1px;
    right: 3px;
    width: 2px;
    height: 2px;
    background: #ff0066;
    border-radius: 50%;
    animation: phoneLightBlink2 2.5s ease-in-out infinite;
    animation-delay: 0.5s;
    box-shadow: 0 0 3px rgba(255, 0, 102, 0.8);
}

@keyframes phoneLightBlink1 {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes phoneLightBlink2 {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.call-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.4);
    border-radius: 4px;
    animation: callPulse 2s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-3px) rotate(2deg);
    }
    50% {
        transform: translateY(-1px) rotate(0deg);
    }
    75% {
        transform: translateY(-2px) rotate(-1deg);
    }
}

@keyframes callPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.phone-icon:hover .iphone {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(52, 199, 89, 0.4), 
                inset 0 1px 2px rgba(255, 255, 255, 0.1);
    border-color: #34c759;
}

.phone-icon:hover .iphone-screen {
    background: linear-gradient(145deg, #000000, #111111);
    border-color: #34c759;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.7),
                0 0 8px rgba(52, 199, 89, 0.3);
}

.phone-icon:hover .phone-app {
    animation: phonePulse 0.8s ease-in-out infinite;
    transform: scale(1.2);
}

.phone-icon:hover .call-pulse {
    animation: callPulse 0.5s ease-in-out infinite;
    background: rgba(139, 0, 0, 0.6);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    text-shadow: none;
}

.nav-link:visited {
    color: #000000;
}

.nav-link:hover {
    color: #000000;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8B0000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Active page navigation link - blue color */
.nav-link.active {
    color: #000000 !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background-color: #191970; /* Navy blue underline */
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Search Navigation Bar */
.search-nav {
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    position: sticky;
    top: 80px;
    z-index: 999;
}

.search-container {
    max-width: 300px;
    margin: 0;
    margin-left: -20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-input {
    flex: 1;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    font-size: 12px;
    outline: none;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    border-color: #8B0000;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.search-btn {
    background: linear-gradient(135deg, #8B0000, #191970);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(139, 0, 0, 0.3);
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.5);
}

.search-icon {
    font-size: 14px;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 350px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 8px;
    display: none;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.search-result-item:hover {
    background: rgba(139, 0, 0, 0.2);
    padding-left: 25px;
}

.search-result-item:last-child {
    border-bottom: none;
}

.result-title {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 14px;
}

.result-section {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #8B0000 0%, #191970 32%, #000000 52%, #8B0000 76%, #191970 100%) !important;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 0, 0, 0.8), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(0, 255, 0, 0.6), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(0, 100, 255, 0.7), transparent),
        radial-gradient(1px 1px at 15px 80px, rgba(255, 215, 0, 0.9), transparent),
        radial-gradient(2px 2px at 70px 20px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 85px 60px, rgba(255, 20, 147, 0.6), transparent),
        radial-gradient(2px 2px at 30px 50px, rgba(50, 205, 50, 0.7), transparent),
        radial-gradient(1px 1px at 60px 10px, rgba(255, 69, 0, 0.8), transparent);
    background-size: 120px 100px;
    animation: starsTwinkle 15s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 110px 25px, rgba(138, 43, 226, 0.7), transparent),
        radial-gradient(2px 2px at 45px 85px, rgba(255, 165, 0, 0.6), transparent),
        radial-gradient(1px 1px at 75px 45px, rgba(0, 191, 255, 0.8), transparent),
        radial-gradient(2px 2px at 25px 65px, rgba(255, 105, 180, 0.7), transparent),
        radial-gradient(1px 1px at 95px 15px, rgba(144, 238, 144, 0.6), transparent),
        radial-gradient(2px 2px at 55px 75px, rgba(255, 255, 224, 0.8), transparent);
    background-size: 140px 110px;
    animation: starsTwinkle2 18s ease-in-out infinite 3s;
    z-index: 1;
    pointer-events: none;
}

/* Inline Process Section */
.hero-process {
    margin-top: 3rem;
    padding: 0 20px;
}

.process-steps-inline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.process-steps-inline h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.z7-tv-live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 0.5rem;
    vertical-align: middle;
    border-radius: 50%;
    background: #ff2a2a;
    box-shadow: 0 0 6px rgba(255, 42, 42, 0.5);
    animation: z7TvDotBlink 8s ease-in-out infinite;
}

@keyframes z7TvDotBlink {
    0%, 100% {
        background: #ff2a2a;
        box-shadow: 0 0 6px rgba(255, 42, 42, 0.45), 0 0 12px rgba(255, 42, 42, 0.2);
        opacity: 0.7;
    }
    12.5% {
        opacity: 0.28;
    }
    25% {
        background: #3d7dff;
        box-shadow: 0 0 6px rgba(61, 125, 255, 0.48), 0 0 12px rgba(61, 125, 255, 0.22);
        opacity: 0.7;
    }
    37.5% {
        opacity: 0.28;
    }
    50% {
        background: #f4c84f;
        box-shadow: 0 0 6px rgba(244, 200, 79, 0.5), 0 0 12px rgba(244, 200, 79, 0.24);
        opacity: 0.7;
    }
    62.5% {
        opacity: 0.28;
    }
    75% {
        background: #39ff14;
        box-shadow: 0 0 6px rgba(57, 255, 20, 0.52), 0 0 12px rgba(57, 255, 20, 0.24);
        opacity: 0.7;
    }
    87.5% {
        opacity: 0.28;
    }
}

.tv-player-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 2rem;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(18, 26, 74, 0.95), rgba(68, 8, 18, 0.94));
    border: 2px solid rgba(255, 215, 120, 0.45);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 24px rgba(65, 105, 225, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tv-frame {
    position: relative;
    padding: 1rem;
    border-radius: 26px;
    background: linear-gradient(145deg, #191970 0%, #8b0000 52%, #d4af37 100%);
    border: 4px solid #f0c75e;
    box-shadow: inset 0 0 0 2px rgba(25, 25, 112, 0.8), inset 0 0 0 4px rgba(139, 0, 0, 0.45), 0 16px 28px rgba(0, 0, 0, 0.35);
}

.tv-frame::before,
.tv-frame::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle at 30% 30%, #fff0c7, #d4af37 48%, #8b0000 78%, #191970 100%);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.35), 0 0 0 2px rgba(25, 25, 112, 0.6);
}

.tv-frame::before {
    left: -8px;
}

.tv-frame::after {
    right: -8px;
}

.tv-screen {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px;
    border: 6px solid #151515;
    background: #050505;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.06), inset 0 0 40px rgba(0, 0, 0, 0.45);
}

.tv-screen iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.tv-stand {
    position: relative;
    width: 160px;
    height: 16px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #f0c75e 0%, #8b0000 55%, #191970 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 14px rgba(0, 0, 0, 0.28);
}

.tv-stand::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 56px;
    height: 20px;
    transform: translateX(-50%);
    border-radius: 12px 12px 6px 6px;
    background: linear-gradient(180deg, #f0c75e 0%, #4169e1 45%, #191970 100%);
}

.tv-stand::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 220px;
    height: 10px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.28);
    filter: blur(2px);
}

.steps-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.step-inline {
    text-align: center;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    position: relative;
    transition: transform 0.2s ease, background 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.step-inline:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
}

.step-number-inline {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #8B0000, #191970);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.step-inline h4 {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0.5rem 0 0.3rem 0;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.step-inline p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.7rem;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Animated Emojis - Home page only */
.step-inline:nth-child(1) h4 {
    animation: phoneRing 2s ease-in-out infinite;
}

.step-inline:nth-child(2) h4 {
    animation: paintBrush 3s ease-in-out infinite;
}

.step-inline:nth-child(3) h4 {
    animation: rocketLaunch 2.5s ease-in-out infinite;
}

/* Disable h4 animations for non-home pages */
body:not(.home-page) .step-inline:nth-child(1) h4,
body:not(.home-page) .step-inline:nth-child(2) h4,
body:not(.home-page) .step-inline:nth-child(3) h4 {
    animation: none;
}

@keyframes phoneRing {
    0%, 100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    10%, 30% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    20%, 40% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
    50%, 90% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes paintBrush {
    0%, 100% {
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }
    25% {
        -webkit-transform: scale(1.1) rotate(-5deg);
        transform: scale(1.1) rotate(-5deg);
    }
    50% {
        -webkit-transform: scale(1.05) rotate(5deg);
        transform: scale(1.05) rotate(5deg);
    }
    75% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }
}

@keyframes rocketLaunch {
    0%, 100% {
        -webkit-transform: translateY(0px) scale(1);
        transform: translateY(0px) scale(1);
    }
    20% {
        -webkit-transform: translateY(-3px) scale(1.05);
        transform: translateY(-3px) scale(1.05);
    }
    40% {
        -webkit-transform: translateY(-1px) scale(1.02);
        transform: translateY(-1px) scale(1.02);
    }
    60% {
        -webkit-transform: translateY(-4px) scale(1.08);
        transform: translateY(-4px) scale(1.08);
    }
    80% {
        -webkit-transform: translateY(-2px) scale(1.03);
        transform: translateY(-2px) scale(1.03);
    }
}

/* Emoji-only animations for non-home pages */
.step-inline h4 span.emoji {
    display: inline-block;
    transition: transform 0.3s ease;
}

.step-inline:nth-child(1) h4 span.emoji {
    animation: phoneRingEmoji 2s ease-in-out infinite;
}

.step-inline:nth-child(2) h4 span.emoji {
    animation: paintBrushEmoji 3s ease-in-out infinite;
}

.step-inline:nth-child(3) h4 span.emoji {
    animation: rocketLaunchEmoji 2.5s ease-in-out infinite;
}

@keyframes phoneRingEmoji {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50%, 90% {
        transform: rotate(0deg);
    }
}

@keyframes paintBrushEmoji {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-5deg);
    }
    50% {
        transform: scale(1.2) rotate(5deg);
    }
    75% {
        transform: scale(1.1) rotate(-2deg);
    }
}

@keyframes rocketLaunchEmoji {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    20% {
        transform: translateY(-3px) scale(1.05);
    }
    40% {
        transform: translateY(-1px) scale(1.02);
    }
    60% {
        transform: translateY(-4px) scale(1.08);
    }
    80% {
        transform: translateY(-2px) scale(1.03);
    }
}

@keyframes starMove {
    from { transform: translateY(0px); }
    to { transform: translateY(-100px); }
}

@keyframes starMove {
    from { transform: translateY(0px); }
    to { transform: translateY(-100px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    right: -50%;
    bottom: -100%;
    background: 
        radial-gradient(1px 1px at 35px 55px, rgba(255, 182, 193, 0.6), transparent),
        radial-gradient(2px 2px at 80px 35px, rgba(173, 216, 230, 0.7), transparent),
        radial-gradient(1px 1px at 50px 80px, rgba(255, 228, 181, 0.5), transparent),
        radial-gradient(2px 2px at 15px 45px, rgba(221, 160, 221, 0.8), transparent);
    background-size: 160px 120px;
    animation: starsTwinkle3 22s ease-in-out infinite 7s;
    z-index: -1;
    pointer-events: none;
}

.hero-container::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    right: -50%;
    bottom: -100%;
    background: 
        radial-gradient(1px 1px at 65px 25px, rgba(255, 99, 71, 0.5), transparent),
        radial-gradient(2px 2px at 25px 70px, rgba(135, 206, 235, 0.6), transparent),
        radial-gradient(1px 1px at 85px 50px, rgba(255, 215, 0, 0.7), transparent);
    background-size: 180px 130px;
    animation: starsTwinkle4 20s ease-in-out infinite 12s;
    z-index: -1;
    pointer-events: none;
}

/* Hero Rotating Logo */
.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.rotating-logo {
    height: 180px;
    width: auto;
    animation: logoRotateY 15s linear infinite;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    cursor: pointer;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    backface-visibility: visible;
}

@keyframes logoGoldTransform {
    0%, 30% {
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    }
    50% {
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2)) 
                drop-shadow(0 0 20px rgba(184, 134, 11, 0.8)) 
                drop-shadow(0 0 40px rgba(184, 134, 11, 0.5))
                drop-shadow(0 0 60px rgba(184, 134, 11, 0.3))
                sepia(0.7) saturate(1.6) hue-rotate(3deg) brightness(1.15);
    }
    70%, 100% {
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    }
}

@keyframes goldOverlay {
    0%, 60% {
        background: linear-gradient(45deg, rgba(255, 215, 0, 0), rgba(255, 215, 0, 0));
        opacity: 0;
    }
    70%, 100% {
        background: linear-gradient(45deg, rgba(255, 215, 0, 0.8), rgba(255, 165, 0, 0.6));
        opacity: 1;
    }
}

.rotating-logo:hover {
    animation-play-state: paused;
    transform: scale(1.1) rotateY(0deg);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.3));
}

@keyframes logoHoverPulse {
    0%, 100% {
        transform: scale(1.1) rotateY(0deg);
        filter: drop-shadow(0 12px 30px rgba(139, 0, 0, 0.4)) 
                drop-shadow(0 0 20px rgba(25, 25, 112, 0.3));
    }
    50% {
        transform: scale(1.15) rotateY(5deg);
        filter: drop-shadow(0 15px 35px rgba(139, 0, 0, 0.6)) 
                drop-shadow(0 0 25px rgba(25, 25, 112, 0.5));
    }
}

/* Y-axis rotation animation for logo */
@keyframes logoRotateY {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* About Section Smaller Rotating Logo */
.about-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.rotating-logo-small {
    height: 120px;
    width: auto;
    animation: logoRotateY 15s linear infinite;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    cursor: pointer;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    backface-visibility: visible;
}

.rotating-logo-small:hover {
    animation-play-state: paused;
    transform: scale(1.1) rotateY(0deg);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.9);
}

/* Services Hero Title - Professional styling to match hero-title */
.services-hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.9);
}

/* Hero Slogan */
.hero-slogan {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    opacity: 0.92;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: fadeInUp 1.5s ease-out;
}

.hero-slogan .slogan-lights,
.hero-slogan .slogan-camera,
.hero-slogan .slogan-action {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero-slogan-logo {
    text-align: center;
    margin-top: 0.6rem;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-slogan-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    opacity: 0.85;
    animation: logoRotateY 15s linear infinite;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22));
    transform-style: preserve-3d;
    backface-visibility: visible;
    transition: all 0.3s ease;
}

.hero-slogan-logo-img:hover {
    animation-play-state: paused;
    transform: scale(1.08) rotateY(0deg);
    filter: drop-shadow(0 6px 14px rgba(139, 0, 0, 0.28)) drop-shadow(0 0 12px rgba(25, 25, 112, 0.2));
}

@keyframes titleGlowPulse {
    0%, 100% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.9);
        transform: translateY(0) scale(1);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.55), 0 0 22px rgba(139, 0, 0, 0.35), 2px 2px 8px rgba(0, 0, 0, 0.85);
        transform: translateY(-2px) scale(1.01);
    }
}

@keyframes sloganSweep {
    0%, 100% {
        letter-spacing: 0.5px;
        opacity: 0.72;
        transform: translateY(0);
    }
    50% {
        letter-spacing: 1px;
        opacity: 1;
        transform: translateY(-1px);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1) rotateZ(0deg);
        opacity: 0.85;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22));
    }
    50% {
        transform: scale(1.08) rotateZ(1deg);
        opacity: 1;
        filter: drop-shadow(0 8px 16px rgba(139, 0, 0, 0.28));
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }
    50% {
        transform: translateY(-6px);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
    }
}

@keyframes coverBreath {
    0%, 100% {
        transform: scale(1);
        filter: saturate(1) brightness(1);
    }
    50% {
        transform: scale(1.02);
        filter: saturate(1.08) brightness(1.05);
    }
}

@keyframes zavierCardFloatSmooth {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.24);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 13px 30px rgba(0, 0, 0, 0.28);
    }
}

@keyframes zavierCoverBreathSmooth {
    0%, 100% {
        transform: scale(1);
        filter: saturate(1) brightness(1);
    }
    50% {
        transform: scale(1.01);
        filter: saturate(1.03) brightness(1.02);
    }
}

@keyframes textShimmer {
    0%, 100% {
        opacity: 0.85;
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
}

@keyframes ctaPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 0 rgba(25, 25, 112, 0);
    }
    50% {
        transform: translateY(-1px) scale(1.02);
        box-shadow: 0 10px 22px rgba(25, 25, 112, 0.22);
    }
}

.beats-page .services-hero-title,
.zavier-page .services-hero-title {
    animation: fadeInUp 1s ease-out, titleGlowPulse 4.5s ease-in-out infinite 1s;
}

.beats-page .hero-slogan,
.zavier-page .hero-slogan {
    animation: fadeInUp 1.5s ease-out;
    opacity: 0.7;
}

.beats-page .hero-slogan-logo-img,
.zavier-page .hero-slogan-logo-img {
    animation: logoRotateY 15s linear infinite, logoPulse 3.5s ease-in-out infinite;
}

.beats-page .beat-card,
.zavier-page .beat-card {
    animation: fadeInUp 0.8s ease-out, cardFloat 5.5s ease-in-out infinite;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zavier-page .beat-card {
    animation: fadeInUp 0.8s ease-out, zavierCardFloatSmooth 8.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.beats-page .beat-card:nth-child(2n),
.zavier-page .beat-card:nth-child(2n) {
    animation-delay: 0.15s, 0.7s;
}

.beats-page .beat-card:nth-child(3n),
.zavier-page .beat-card:nth-child(3n) {
    animation-delay: 0.25s, 1.1s;
}

.beats-page .beat-cover,
.zavier-page .beat-cover {
    animation: coverBreath 4.2s ease-in-out infinite;
}

.zavier-page .beat-cover {
    animation: zavierCoverBreathSmooth 7.5s ease-in-out infinite;
}

.beats-page .beat-title,
.zavier-page .beat-title {
    animation: textShimmer 3.8s ease-in-out infinite;
}

.beats-page .beat-note,
.zavier-page .beat-note {
    animation: textShimmer 4.5s ease-in-out infinite 0.4s;
}

.beats-page .beat-cta,
.zavier-page .beat-cta {
    color: #00ff88 !important;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.6) !important;
    animation: ctaPulse 2.8s ease-in-out infinite;
}

.beats-page .beat-cta {
    animation: cyberBorderPrimary 20s ease-in-out infinite !important;
    border: 1px solid #00ffff;
}

.zavier-page .beat-cta {
    animation: cyberBorderPrimary 20s ease-in-out infinite !important;
    border: 1px solid #00ffff;
}

.zavier-page .beat-cta,
.zavier-page .beat-cta:hover,
.zavier-page .beat-cta:focus,
.zavier-page .beat-cta:active {
    color: #FFD700 !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.55) !important;
}

.zavier-page .beat-card:nth-child(1) .beat-cta {
    animation-delay: 0s;
}

.zavier-page .beat-card:nth-child(2) .beat-cta {
    animation-delay: -5s;
}

.zavier-page .beat-card:nth-child(3) .beat-cta {
    animation-delay: -10s;
}

.zavier-page .beat-card:nth-child(4) .beat-cta {
    animation-delay: -15s;
}

.beats-page .beat-card:hover,
.zavier-page .beat-card:hover {
    animation-play-state: paused;
    transform: translateY(-10px) scale(1.02);
}

.beats-page .beat-card:hover .beat-cover,
.zavier-page .beat-card:hover .beat-cover {
    animation-play-state: paused;
    transform: scale(1.06);
}

.beats-page .beat-card:hover .beat-cta,
.zavier-page .beat-card:hover .beat-cta {
    animation-play-state: paused;
    transform: translateY(-1px) scale(1.03);
}

.zavier-page .beat-card:hover {
    transform: translateY(-4px) scale(1.01);
}

.zavier-page .beat-card:hover .beat-cover {
    transform: scale(1.02);
}

.zavier-page .beat-card:hover .beat-cta {
    transform: translateY(-0.5px) scale(1.01);
}

@keyframes beatsMarqueeSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-30%);
    }
}

@keyframes beatsLedPulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(199, 0, 0, 0.2), inset 0 0 10px rgba(25, 25, 112, 0.12);
        border-color: rgba(199, 0, 0, 0.38);
    }
    50% {
        box-shadow: 0 0 14px rgba(25, 25, 112, 0.28), 0 0 18px rgba(199, 0, 0, 0.2), inset 0 0 12px rgba(25, 25, 112, 0.18);
        border-color: rgba(25, 25, 112, 0.44);
    }
}

@keyframes beatsEqMove {
    0%, 100% {
        transform: scaleY(0.35);
        opacity: 0.7;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes beatsBgGlow {
    0%, 100% {
        opacity: 0.2;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 0.4;
        transform: translateY(-5px) scale(1.04);
    }
}

@keyframes beatsCardNeon {
    0%, 100% {
        border-color: rgba(199, 0, 0, 0.22);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    }
    50% {
        border-color: rgba(25, 25, 112, 0.4);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28), 0 0 12px rgba(25, 25, 112, 0.18);
    }
}

@keyframes beatsCardDrift {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes beatsCardScan {
    0% {
        transform: translateX(-110%);
        opacity: 0;
    }
    30% {
        opacity: 0.15;
    }
    100% {
        transform: translateX(110%);
        opacity: 0;
    }
}

.beats-page .services-hero-content {
    position: relative;
}

.beats-page .beats-led-marquee {
    margin: 0.75rem auto 0.9rem;
    max-width: 760px;
    border-radius: 12px;
    border: 1px solid rgba(25, 25, 112, 0.4);
    background: linear-gradient(90deg, rgba(25, 25, 112, 0.26), rgba(8, 8, 8, 0.32), rgba(199, 0, 0, 0.24));
    backdrop-filter: blur(8px);
    overflow: hidden;
    white-space: nowrap;
    animation: beatsLedPulse 4.8s ease-in-out infinite;
}

.beats-page .beats-led-marquee span {
    display: inline-block;
    min-width: 100%;
    padding: 0.46rem 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(25, 25, 112, 0.3);
    animation: beatsMarqueeSlide 18s linear infinite;
}

.beats-page .beats-led-marquee span:nth-child(2) {
    color: #d6ddff;
    animation-direction: reverse;
}

.beats-page .beats-eq {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.35rem;
    height: 34px;
    margin: 0.15rem 0 0.9rem;
}

.beats-page .beats-eq .eq-bar {
    width: 6px;
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(180deg, #ffffff 0%, #c70000 45%, #191970 100%);
    transform-origin: bottom;
    animation: beatsEqMove 1.6s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(25, 25, 112, 0.25);
}

.beats-page .beats-eq .eq-bar:nth-child(2n) {
    animation-duration: 0.9s;
    animation-delay: 0.15s;
}

.beats-page .beats-eq .eq-bar:nth-child(3n) {
    animation-duration: 1.2s;
    animation-delay: 0.25s;
}

.beats-page .beats-section {
    position: relative;
    overflow: hidden;
}

.beats-page .cyberbeats-section,
.beats-page .beats-section {
    background: transparent !important;
}

.beats-page .cyberbeats-hero {
    background: #000000 !important;
}

.beats-page .cyberbeats-section::before {
    display: none;
}

.beats-page .beats-hero {
    background: #000000 !important;
    position: relative;
    overflow: hidden;
}

.beats-page .beats-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 0, 0, 0.8), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(0, 255, 0, 0.6), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(0, 100, 255, 0.7), transparent),
        radial-gradient(1px 1px at 15px 80px, rgba(255, 215, 0, 0.9), transparent),
        radial-gradient(2px 2px at 70px 20px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 85px 60px, rgba(255, 20, 147, 0.6), transparent),
        radial-gradient(2px 2px at 30px 50px, rgba(50, 205, 50, 0.7), transparent),
        radial-gradient(1px 1px at 60px 10px, rgba(255, 69, 0, 0.8), transparent);
    background-size: 120px 100px;
    animation: starsTwinkle 15s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.beats-page .beats-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(1px 1px at 110px 25px, rgba(138, 43, 226, 0.7), transparent),
        radial-gradient(2px 2px at 45px 85px, rgba(255, 165, 0, 0.6), transparent),
        radial-gradient(1px 1px at 75px 45px, rgba(0, 191, 255, 0.8), transparent),
        radial-gradient(2px 2px at 25px 65px, rgba(255, 105, 180, 0.7), transparent),
        radial-gradient(1px 1px at 95px 15px, rgba(144, 238, 144, 0.6), transparent),
        radial-gradient(2px 2px at 55px 75px, rgba(255, 255, 224, 0.8), transparent);
    background-size: 140px 110px;
    animation: starsTwinkle2 18s ease-in-out infinite 3s;
    z-index: 1;
    pointer-events: none;
}

.beats-page .beats-section::before,
.beats-page .beats-section::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(24px);
    pointer-events: none;
    z-index: 0;
    animation: beatsBgGlow 6s ease-in-out infinite;
}

.beats-page .beats-section::before {
    top: 30px;
    left: -70px;
    background: radial-gradient(circle, rgba(199, 0, 0, 0.35) 0%, rgba(199, 0, 0, 0) 70%);
}

.beats-page .beats-section::after {
    bottom: -40px;
    right: -70px;
    background: radial-gradient(circle, rgba(25, 25, 112, 0.4) 0%, rgba(25, 25, 112, 0) 72%);
    animation-delay: 1.2s;
}

.beats-page .beats-section .container {
    position: relative;
    z-index: 1;
}

.beats-page .beat-card {
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out, beatsCardNeon 7s ease-in-out infinite;
}

.beats-page .beat-title {
    color: #f4f7ff;
}

.beats-page .beat-note {
    color: rgba(230, 236, 255, 0.84);
}

.beats-page .beat-cta {
    background: #000000 !important;
    animation: cyberBorderPrimary 20s ease-in-out infinite;
    border: 1px solid #00ffff;
}

.beats-page .beat-cta:hover {
    background: #000000 !important;
}

.beats-page .beat-card:nth-child(1) .beat-cta {
    animation-delay: 0s;
}

.beats-page .beat-card:nth-child(2) .beat-cta {
    animation-delay: -5s;
}

.beats-page .beat-card:nth-child(3) .beat-cta {
    animation-delay: -10s;
}

.beats-page .beat-card:nth-child(4) .beat-cta {
    animation-delay: -15s;
}

.beats-page .beat-card:nth-child(5) .beat-cta {
    animation-delay: -2.5s;
}

.beats-page .beat-card:nth-child(6) .beat-cta {
    animation-delay: -7.5s;
}

.beats-page .beat-card:nth-child(7) .beat-cta {
    animation-delay: -12.5s;
}

.beats-page .beat-card:nth-child(8) .beat-cta {
    animation-delay: -17.5s;
}

@media (max-width: 768px) {
    .beats-page .beats-led-marquee {
        max-width: 100%;
        margin-top: 0.6rem;
    }

    .beats-page .beats-led-marquee span {
        font-size: 0.66rem;
        letter-spacing: 0.12em;
        padding: 0.36rem 0;
    }

    .beats-page .beats-eq {
        gap: 0.28rem;
        height: 28px;
    }

    .beats-page .beats-eq .eq-bar {
        width: 5px;
    }
}

.beats-hero {
    padding-top: 120px;
}

.beats-pricing-note {
    max-width: 900px;
    margin: 0 auto 1rem;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.beats-hero-actions {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.beats-contact-btn {
    margin-top: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    padding: 0.78rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.beats-page .beats-contact-btn {
    min-width: 200px;
    padding: 0.62rem 1.05rem;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    animation: cyberBorderPrimary 20s ease-in-out infinite;
}

.zavier-page .beats-contact-btn {
    min-width: 200px;
    padding: 0.62rem 1.05rem;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    animation: cyberBorderPrimary 20s ease-in-out infinite;
}

.zavier-page .beats-contact-btn,
.zavier-page .beats-contact-btn:hover,
.zavier-page .beats-contact-btn:focus,
.zavier-page .beats-contact-btn:active {
    color: #FFD700 !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.55) !important;
}

.beats-contact-btn::before {
    display: none;
}

.beats-contact-btn.cyberbeats-btn-primary {
    animation: cyberBorderSecondary 16s ease-in-out infinite 0s !important;
}

.beats-contact-btn.cyberbeats-btn-secondary {
    animation: cyberBorderSecondary 14s ease-in-out infinite 2.2s !important;
}

.beats-contact-btn:hover {
    transform: translateY(-1px) scale(1.006);
}

.beats-contact-btn.cyberbeats-btn-primary:hover,
.beats-contact-btn.cyberbeats-btn-secondary:hover {
    transform: translateY(-2px);
    background: transparent !important;
}

.beats-contact-btn.cyberbeats-btn-primary:hover {
    border-color: #ff1a4a !important;
    color: #ff1a4a !important;
    text-shadow: 0 0 12px rgba(255, 26, 74, 0.9) !important;
    box-shadow: 0 0 18px rgba(255, 26, 74, 0.6), 0 0 30px rgba(255, 26, 74, 0.3) !important;
    animation: none !important;
}

.beats-contact-btn.cyberbeats-btn-secondary:hover {
    border-color: #1a6aff !important;
    color: #1a6aff !important;
    text-shadow: 0 0 12px rgba(26, 106, 255, 0.9) !important;
    box-shadow: 0 0 18px rgba(26, 106, 255, 0.6), 0 0 30px rgba(26, 106, 255, 0.3) !important;
}

.beats-contact-btn:active {
    transform: translateY(0) scale(0.995);
}

.beats-page .beats-pack-btn {
    background: rgba(5, 8, 20, 0.6) !important;
}

.beats-page .beats-pack-btn:hover {
    background: rgba(5, 8, 20, 0.6) !important;
}

@keyframes beatsCtaShine {
    0% {
        left: -120%;
        opacity: 0;
    }
    20% {
        opacity: 0.7;
    }
    55% {
        left: 140%;
        opacity: 0;
    }
    100% {
        left: 140%;
        opacity: 0;
    }
}

@keyframes beatsCtaFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.5px);
    }
}

.beats-section {
    padding: 3rem 0 4rem;
}

.zavier-page .services-hero,
.zavier-page .beats-section {
    background: transparent !important;
}

.beats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.4rem;
}

.beat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 1rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.beat-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.25);
    transform: none;
    -webkit-transform: none;
    image-rendering: auto;
}

.beat-cover-wrap {
    position: relative;
    margin-bottom: 0.8rem;
    border-radius: 10px;
    overflow: hidden;
}

.beat-cover-wrap .beat-cover {
    margin-bottom: 0;
}

.beat-cover-video {
    display: block;
    background: rgba(0, 0, 0, 0.35);
}

.beat-cover-stars {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    background:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(238, 238, 238, 0.8), transparent),
        radial-gradient(1px 1px at 30px 80px, rgba(255, 255, 255, 0.85), transparent),
        radial-gradient(2px 2px at 120px 90px, rgba(221, 221, 221, 0.8), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    transform: scale(1.06);
    filter: blur(1.4px) saturate(0.9);
    animation: starsTwinkle 7s ease-in-out infinite;
    animation-play-state: paused;
    transition: opacity 1.35s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), filter 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.05s;
    will-change: opacity, transform, filter;
}

.beat-cover-stars::before,
.beat-cover-stars::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.beat-cover-stars::before {
    background:
        radial-gradient(1px 1px at 50px 100px, rgba(139, 0, 0, 0.75), transparent),
        radial-gradient(1px 1px at 250px 120px, rgba(255, 215, 0, 0.7), transparent),
        radial-gradient(1px 1px at 450px 40px, rgba(25, 25, 112, 0.75), transparent);
    background-repeat: repeat;
    background-size: 500px 200px;
    opacity: 0.55;
    transform: scale(1.07);
    filter: blur(1px);
    animation: galaxyMove 45s linear infinite;
    animation-play-state: paused;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.65s cubic-bezier(0.22, 1, 0.36, 1), filter 1.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.14s;
}

.beat-cover-stars::after {
    background:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 0, 0, 0.68), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(0, 255, 0, 0.52), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(0, 100, 255, 0.62), transparent),
        radial-gradient(1px 1px at 15px 80px, rgba(255, 215, 0, 0.7), transparent),
        radial-gradient(2px 2px at 70px 20px, rgba(255, 255, 255, 0.68), transparent),
        radial-gradient(1px 1px at 85px 60px, rgba(255, 20, 147, 0.52), transparent);
    background-size: 130px 110px;
    opacity: 0.45;
    transform: scale(1.065);
    filter: blur(0.9px);
    animation: starsTwinkle2 8.5s ease-in-out infinite;
    animation-play-state: paused;
    transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1), transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), filter 1.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.24s;
}

.beat-card.playing .beat-cover-stars {
    opacity: 0.85;
    transform: scale(1);
    filter: blur(0) saturate(1.06);
    animation-play-state: running;
}

.beat-card.playing .beat-cover-stars::before {
    transform: scale(1);
    filter: blur(0);
    animation-play-state: running;
}

.beat-card.playing .beat-cover-stars::after {
    transform: scale(1);
    filter: blur(0);
    animation-play-state: running;
}

.beat-cover-logo {
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    height: 68px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(8, 8, 12, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
    padding: 4px;
    pointer-events: none;
    transition: filter 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
    z-index: 3;
}

.beat-card-visualizer {
    --viz-hue-a: 190;
    --viz-hue-b: 280;
    --viz-hue-c: 30;
    --viz-pulse: 4.2s;
    --viz-drift: 8.4s;
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    display: block;
    opacity: 0;
    transition: opacity 0.35s ease;
    background:
        radial-gradient(circle at 20% 30%, hsl(var(--viz-hue-a) 95% 60% / 0.12), transparent 48%),
        radial-gradient(circle at 80% 60%, hsl(var(--viz-hue-b) 90% 62% / 0.1), transparent 52%);
}

.beat-viz-nebula {
    position: absolute;
    inset: 8% 10%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, hsl(var(--viz-hue-a) 94% 62% / 0.2) 0%, transparent 52%),
        radial-gradient(circle at 70% 62%, hsl(var(--viz-hue-b) 90% 62% / 0.18) 0%, transparent 58%),
        radial-gradient(circle at 45% 70%, hsl(var(--viz-hue-c) 86% 56% / 0.14) 0%, transparent 55%);
    filter: blur(12px);
    opacity: calc(0.32 + (var(--viz-energy) * 0.28));
    transform: scale(calc(0.92 + (var(--viz-energy) * 0.18)));
    transition: transform 0.15s ease-out, opacity 0.15s ease-out;
}

.beat-viz-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68%;
    height: 68%;
    border-radius: 50%;
    border: 1px solid hsl(var(--viz-hue-a) 90% 66% / 0.3);
    box-shadow: 0 0 10px hsl(var(--viz-hue-a) 95% 62% / 0.2);
    transform: translate(-50%, -50%) scale(calc(0.86 + (var(--viz-energy) * 0.25)));
    opacity: calc(0.35 + (var(--viz-energy) * 0.4));
    transition: transform 0.13s ease-out, opacity 0.13s ease-out;
}

.beat-viz-ring.ring-b {
    width: 52%;
    height: 52%;
    border-color: hsl(var(--viz-hue-b) 90% 64% / 0.28);
    box-shadow: 0 0 10px hsl(var(--viz-hue-b) 90% 62% / 0.18);
    transform: translate(-50%, -50%) scale(calc(0.9 + (var(--viz-energy) * 0.22)));
}

.beat-viz-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(calc(0.85 + (var(--viz-energy) * 0.35)));
    background: radial-gradient(circle, hsl(var(--viz-hue-c) 95% 74%) 0%, hsl(var(--viz-hue-a) 92% 58%) 55%, transparent 100%);
    box-shadow: 0 0 12px hsl(var(--viz-hue-c) 95% 66% / 0.45);
    opacity: calc(0.5 + (var(--viz-energy) * 0.42));
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.beat-viz-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--node-size, 4px);
    height: var(--node-size, 4px);
    border-radius: 50%;
    background: hsl(var(--node-hue, var(--viz-hue-a)) 95% 66%);
    box-shadow: 0 0 8px hsl(var(--node-hue, var(--viz-hue-a)) 95% 62% / 0.35);
    transform: translate(-50%, -50%) rotate(var(--node-angle, 0deg)) translateY(calc(-1 * var(--node-radius, 38px))) scale(calc(0.52 + (var(--node-pulse, 0.18) * 0.66)));
    transform-origin: center;
    opacity: var(--node-alpha, 0.35);
    animation: beatVizOrbit var(--node-speed, 7s) linear infinite;
    animation-delay: var(--node-delay, 0s);
    transition: transform 0.12s ease-out, opacity 0.12s ease-out;
}

.beat-card.playing .beat-card-visualizer {
    opacity: 1;
    animation: beatVizDrift var(--viz-drift) linear infinite;
}

.beat-card.playing .beat-viz-node {
    animation-play-state: running;
}

.beat-card-visualizer.is-fallback.is-playing .beat-viz-node {
    animation: beatVizOrbit var(--node-speed, 7s) linear infinite, beatVizNodeFallback var(--viz-pulse) ease-in-out infinite;
    animation-delay: var(--node-delay, 0s), var(--node-delay, 0s);
}

@keyframes beatVizNodeFallback {
    0%, 100% {
        opacity: 0.32;
        filter: saturate(0.95);
    }
    50% {
        opacity: 0.4;
        filter: saturate(1.18);
    }
}

@keyframes beatVizOrbit {
    from {
        transform: translate(-50%, -50%) rotate(var(--node-angle, 0deg)) translateY(calc(-1 * var(--node-radius, 38px))) scale(calc(0.52 + (var(--node-pulse, 0.18) * 0.66)));
    }
    to {
        transform: translate(-50%, -50%) rotate(calc(var(--node-angle, 0deg) + 360deg)) translateY(calc(-1 * var(--node-radius, 38px))) scale(calc(0.52 + (var(--node-pulse, 0.18) * 0.66)));
    }
}

@keyframes beatVizDrift {
    0% {
        background-position: 0% 0%, 100% 0%;
    }
    50% {
        background-position: 8% -6%, 92% 6%;
    }
    100% {
        background-position: 0% 0%, 100% 0%;
    }
}

.beat-card.playing .beat-cover-logo {
    animation: beatLogoMeterColors 6s linear infinite;
}

.beat-card.playing .beat-title {
    animation: titleSciFiColors 36s ease-in-out infinite;
}

@keyframes titleSciFiColors {
    0%   { color: #00ffff; text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    15%  { color: #ff00ff; text-shadow: 0 0 8px rgba(255, 0, 255, 0.6); }
    30%  { color: #7b2fff; text-shadow: 0 0 8px rgba(123, 47, 255, 0.6); }
    45%  { color: #00ff88; text-shadow: 0 0 8px rgba(0, 255, 136, 0.6); }
    60%  { color: #ff6ef7; text-shadow: 0 0 8px rgba(255, 110, 247, 0.6); }
    75%  { color: #39ff14; text-shadow: 0 0 8px rgba(57, 255, 20, 0.6); }
    90%  { color: #00e5ff; text-shadow: 0 0 8px rgba(0, 229, 255, 0.6); }
    100% { color: #00ffff; text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
}

.beat-title {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-align: center;
    transform: none;
    -webkit-transform: none;
    text-rendering: geometricPrecision;
    transition: color 1s ease, text-shadow 1s ease;
}

.beat-preview {
    display: none;
}

.beat-preview-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.beat-volume-group {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    height: 30px;
    padding: 0 0.2rem 0 0.06rem;
    border-radius: 999px;
    border: 1px solid rgba(124, 169, 255, 0.36);
    background: linear-gradient(135deg, rgba(12, 17, 36, 0.92) 0%, rgba(19, 14, 44, 0.92) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 6px 14px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.beat-volume-group:hover,
.beat-volume-group:focus-within {
    border-color: rgba(110, 227, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 10px rgba(0, 217, 255, 0.25), 0 0 15px rgba(138, 43, 226, 0.16);
}

.beat-volume-group.is-muted {
    border-color: rgba(255, 122, 160, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 0 9px rgba(255, 79, 149, 0.22);
}

.beat-preview-control {
    flex: 1;
    margin-bottom: 0;
    border-radius: 999px;
    border: 1px solid rgba(124, 169, 255, 0.36);
    background: linear-gradient(135deg, rgba(12, 17, 36, 0.92) 0%, rgba(19, 14, 44, 0.92) 100%);
    color: #e7f3ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.5rem 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 6px 14px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    touch-action: manipulation;
}

.beat-volume-control {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: #e7f3ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    touch-action: manipulation;
}

.beat-volume-control:hover,
.beat-volume-control:focus-visible {
    border-color: rgba(110, 227, 255, 0.45);
    box-shadow: inset 0 0 0 1px rgba(110, 227, 255, 0.28);
}

.beat-volume-control:active {
    transform: translateY(1px);
}

.beat-volume-control.is-muted {
    border-color: rgba(255, 122, 160, 0.5);
    box-shadow: inset 0 0 0 1px rgba(255, 122, 160, 0.22);
}

.beat-volume-icon {
    font-size: 0.72rem;
    line-height: 1;
}

.beat-volume-slider {
    width: 0;
    height: 3px;
    border-radius: 999px;
    appearance: none;
    -webkit-appearance: none;
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.35), rgba(138, 43, 226, 0.35));
    border: 0;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition: width 0.24s ease, opacity 0.2s ease;
    cursor: pointer;
}

.beat-volume-control:hover + .beat-volume-slider,
.beat-volume-control:focus-visible + .beat-volume-slider,
.beat-volume-group:hover .beat-volume-slider,
.beat-volume-group:focus-within .beat-volume-slider {
    width: 44px;
    opacity: 1;
    pointer-events: auto;
}

@media (hover: none), (pointer: coarse) {
    .beat-volume-group {
        height: 36px;
        padding: 0 0.34rem 0 0.1rem;
    }

    .beat-volume-control {
        width: 28px;
        height: 28px;
    }

    .beat-volume-icon {
        font-size: 0.9rem;
    }

    .beat-volume-slider {
        width: 78px;
        height: 6px;
        opacity: 1;
        pointer-events: auto;
    }

    .beat-volume-slider::-webkit-slider-thumb {
        width: 16px;
        height: 16px;
    }

    .beat-volume-slider::-moz-range-thumb {
        width: 16px;
        height: 16px;
    }

    .beat-volume-slider::-moz-range-track {
        height: 6px;
    }
}

@media (max-width: 900px) {
    .beat-volume-group {
        height: 36px;
        padding: 0 0.34rem 0 0.1rem;
    }

    .beat-volume-control {
        width: 28px;
        height: 28px;
    }

    .beat-volume-icon {
        font-size: 0.9rem;
    }

    .beat-volume-slider,
    .beat-volume-control:hover + .beat-volume-slider,
    .beat-volume-control:focus-visible + .beat-volume-slider,
    .beat-volume-group:hover .beat-volume-slider,
    .beat-volume-group:focus-within .beat-volume-slider {
        width: 78px;
        height: 6px;
        opacity: 1;
        pointer-events: auto;
    }

    .beat-volume-slider::-webkit-slider-thumb {
        width: 16px;
        height: 16px;
    }

    .beat-volume-slider::-moz-range-thumb {
        width: 16px;
        height: 16px;
    }

    .beat-volume-slider::-moz-range-track {
        height: 6px;
    }
}

.beat-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0%, #9ad8ff 70%);
    border: 1px solid rgba(110, 227, 255, 0.85);
    box-shadow: 0 0 8px rgba(0, 217, 255, 0.35);
}

.beat-volume-slider::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0%, #9ad8ff 70%);
    border: 1px solid rgba(110, 227, 255, 0.85);
    box-shadow: 0 0 8px rgba(0, 217, 255, 0.35);
}

.beat-volume-slider::-moz-range-track {
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.35), rgba(138, 43, 226, 0.35));
    border: 0;
}

.beat-preview-control:hover,
.beat-preview-control:focus-visible {
    border-color: rgba(110, 227, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 10px rgba(0, 217, 255, 0.25), 0 0 15px rgba(138, 43, 226, 0.16);
}

.beat-preview-control:active {
    transform: translateY(1px);
}

.beat-preview-label {
    font-size: 0.8rem;
    line-height: 1;
}

.beat-preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4f5b6b;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
    opacity: 0.75;
}

.beat-preview-control.is-playing .beat-preview-dot {
    animation: beatPreviewDotPulse 3.2s ease-in-out infinite, beatPreviewDotNeon 60s linear infinite;
}

@keyframes beatPreviewDotPulse {
    0%, 100% {
        transform: scale(0.85);
        opacity: 0.55;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes beatPreviewDotNeon {
    0%, 100% {
        background: #00ffff;
        box-shadow: 0 0 7px rgba(0, 255, 255, 0.75), 0 0 12px rgba(0, 255, 255, 0.45);
    }
    20% {
        background: #39ff14;
        box-shadow: 0 0 7px rgba(57, 255, 20, 0.75), 0 0 12px rgba(57, 255, 20, 0.45);
    }
    40% {
        background: #ff00ff;
        box-shadow: 0 0 7px rgba(255, 0, 255, 0.75), 0 0 12px rgba(255, 0, 255, 0.45);
    }
    60% {
        background: #00bfff;
        box-shadow: 0 0 7px rgba(0, 191, 255, 0.75), 0 0 12px rgba(0, 191, 255, 0.45);
    }
    80% {
        background: #ffd300;
        box-shadow: 0 0 7px rgba(255, 211, 0, 0.75), 0 0 12px rgba(255, 211, 0, 0.45);
    }
}

/* beat-cover-wrap overflow handled above */

.beat-meter {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 34px;
    padding: 0.28rem 0.46rem;
    background: linear-gradient(180deg, rgba(8, 12, 30, 0.72) 0%, rgba(4, 7, 22, 0.82) 100%);
    border: 1px solid rgba(122, 170, 255, 0.35);
    border-radius: 9px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 6px 14px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    overflow: hidden;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.beat-card.playing .beat-meter {
    opacity: 0.95;
}

.beat-meter-bar {
    flex: 1;
    min-width: 2px;
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(180deg, #ff1f3f 0%, #c7002f 24%, #8b0000 52%, #2a2a9f 78%, #191970 100%);
    background-size: 100% 190%;
    transform-origin: bottom;
    transform: scaleY(0.2);
    opacity: 0.4;
    transition: transform 0.16s ease-out, opacity 0.16s ease-out, filter 0.2s ease-out, box-shadow 0.2s ease-out;
}

.beat-meter-bar:nth-child(2n) {
    background: linear-gradient(180deg, #2f6dff 0%, #2049d8 24%, #191970 52%, #8b0000 78%, #c70000 100%);
    background-size: 100% 190%;
}

.beat-meter-bar:nth-child(3n) {
    background: linear-gradient(180deg, #00d9ff 0%, #8a2be2 40%, #ff4fd8 80%, #ff2d55 100%);
    background-size: 100% 190%;
}

.beat-meter.is-playing .beat-meter-bar {
    animation: beatMeterNeonPulse 1.8s ease-in-out infinite;
    box-shadow: 0 0 9px rgba(0, 245, 255, 0.34), 0 0 13px rgba(124, 77, 255, 0.24);
    filter: saturate(1.2) brightness(1.08);
}

.beat-meter.is-playing .beat-meter-bar:nth-child(2n) {
    animation-duration: 1.4s;
    animation-delay: 0.1s;
}

.beat-meter.is-playing .beat-meter-bar:nth-child(3n) {
    animation-duration: 1.1s;
    animation-delay: 0.16s;
}

.beat-meter.is-playing .beat-meter-bar:nth-child(5n) {
    animation-duration: 0.95s;
    animation-delay: 0.06s;
}

@keyframes beatMeterNeonPulse {
    0%, 100% {
        background-position: 0% 0%;
        filter: saturate(1.12) brightness(1.04);
        box-shadow: 0 0 8px rgba(0, 245, 255, 0.28), 0 0 11px rgba(124, 77, 255, 0.2);
    }
    50% {
        background-position: 0% 100%;
        filter: saturate(1.35) brightness(1.2);
        box-shadow: 0 0 11px rgba(57, 255, 20, 0.35), 0 0 16px rgba(255, 45, 149, 0.28);
    }
}

@keyframes beatLogoMeterColors {
    0% {
        filter: hue-rotate(0deg) saturate(1.2) brightness(1.06);
        border-color: rgba(255, 31, 63, 0.82);
        box-shadow: 0 0 10px rgba(255, 31, 63, 0.45), 0 0 16px rgba(199, 0, 47, 0.35);
    }
    25% {
        filter: hue-rotate(70deg) saturate(1.32) brightness(1.1);
        border-color: rgba(0, 217, 255, 0.82);
        box-shadow: 0 0 10px rgba(0, 217, 255, 0.42), 0 0 16px rgba(47, 109, 255, 0.34);
    }
    50% {
        filter: hue-rotate(145deg) saturate(1.3) brightness(1.08);
        border-color: rgba(138, 43, 226, 0.84);
        box-shadow: 0 0 10px rgba(138, 43, 226, 0.42), 0 0 16px rgba(255, 79, 216, 0.34);
    }
    75% {
        filter: hue-rotate(225deg) saturate(1.28) brightness(1.08);
        border-color: rgba(25, 25, 112, 0.86);
        box-shadow: 0 0 10px rgba(25, 25, 112, 0.45), 0 0 16px rgba(199, 0, 0, 0.34);
    }
    100% {
        filter: hue-rotate(360deg) saturate(1.2) brightness(1.06);
        border-color: rgba(255, 31, 63, 0.82);
        box-shadow: 0 0 10px rgba(255, 31, 63, 0.45), 0 0 16px rgba(199, 0, 47, 0.35);
    }
}

@keyframes beatMeterFallback {
    0%, 100% {
        transform: scaleY(0.25);
        opacity: 0.45;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.beat-meter.is-fallback.is-playing .beat-meter-bar {
    animation: beatMeterFallback 1s ease-in-out infinite;
}

.beat-meter.is-fallback.is-playing .beat-meter-bar:nth-child(2n) {
    animation-duration: 0.85s;
    animation-delay: 0.12s;
}

.beat-meter.is-fallback.is-playing .beat-meter-bar:nth-child(3n) {
    animation-duration: 1.15s;
    animation-delay: 0.22s;
}

.beat-progress {
    position: relative;
    height: 7px;
    margin: 0.12rem 0 0.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.beat-progress-fill {
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #8B0000 0%, #191970 100%);
    transition: width 0.12s linear;
}

.beat-progress-time {
    margin: 0 0 0.5rem;
    text-align: right;
    font-size: 0.72rem;
    color: rgba(230, 236, 249, 0.82);
    letter-spacing: 0.01em;
}

.beat-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    margin-bottom: 0.7rem;
    text-align: center;
}

.beat-cta {
    display: block;
    text-align: center;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    background: #000000 !important;
    color: #00ff88;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.84rem;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

.beat-cta:hover {
    background: #000000 !important;
}

.beats-controls {
    margin-top: 1.2rem;
    text-align: center;
}

.beats-render-status {
    margin: 0 0 0.8rem;
    color: rgba(232, 238, 252, 0.92);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.beats-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.1rem;
    min-width: 210px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.92), rgba(25, 25, 112, 0.92));
    color: #ffffff;
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.beats-load-more:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

/* Clean redesign for 7 Keyz Beats page */
.beats-page .services-hero {
    background: linear-gradient(145deg, rgba(8, 12, 26, 0.95), rgba(14, 20, 42, 0.93)) !important;
}

.beats-page .services-hero-title {
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 2px 10px rgba(25, 25, 112, 0.35);
}

.beats-page .hero-slogan {
    animation: fadeInUp 1.5s ease-out;
    opacity: 0.7;
}

.beats-page .hero-slogan-logo-img {
    animation: logoRotateY 18s linear infinite;
}

.beats-page .beats-eq {
    margin-top: 0.35rem;
    margin-bottom: 1.1rem;
    height: 26px;
}

.beats-page .beats-eq .eq-bar {
    animation-duration: 2.2s;
    opacity: 0.78;
}

.beats-page .beats-section::before,
.beats-page .beats-section::after {
    display: none;
}

.beats-page .beats-grid {
    gap: 1.1rem;
}

.beats-page .beat-card {
    animation: fadeInUp 0.55s ease-out !important;
    transform: none !important;
    background:
        linear-gradient(rgba(10, 16, 34, 0.84), rgba(10, 16, 34, 0.84)) padding-box,
        linear-gradient(135deg, rgba(255, 45, 45, 0.95), rgba(139, 0, 0, 0.9)) border-box;
    border: 1px solid transparent;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 45, 45, 0.42);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.beats-page .beat-card:nth-child(2n),
.beats-page .beat-card:nth-child(3n) {
    animation-delay: 0s;
}

.beats-page .beat-card:hover {
    animation-play-state: running;
    transform: translateY(-3px) !important;
    background:
        linear-gradient(rgba(10, 16, 34, 0.84), rgba(10, 16, 34, 0.84)) padding-box,
        linear-gradient(135deg, rgba(61, 125, 255, 0.96), rgba(25, 25, 112, 0.92)) border-box;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(61, 125, 255, 0.5);
    filter: saturate(1.03);
}

.beats-page .beat-card.playing {
    animation: none !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 45, 45, 0.48);
}

.beats-page .beat-cover,
.beats-page .beat-title,
.beats-page .beat-note,
.beats-page .beat-cta {
    animation: none;
}

.beats-page .beat-card:hover .beat-cover,
.beats-page .beat-card:hover .beat-cta {
    transform: none;
}

.beats-page .beat-title {
    color: #f5f8ff;
    letter-spacing: 0.01em;
}

.beats-page .beat-note {
    color: rgba(228, 234, 249, 0.82);
}

.beats-page .beat-cta {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.92), rgba(25, 25, 112, 0.92));
}

.beats-page .beat-meter {
    height: 16px;
    gap: 3px;
    padding: 0.2rem 0.3rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.06), rgba(25, 25, 112, 0.1));
    border-color: rgba(255, 255, 255, 0.1);
}

.beats-page .beat-meter.is-playing {
    box-shadow: inset 0 0 7px rgba(0, 245, 255, 0.16), 0 0 12px rgba(124, 77, 255, 0.12);
}

@media (max-width: 768px) {
    .beats-page .beat-card {
        border-radius: 14px;
    }

    .beats-page .beats-eq {
        height: 22px;
    }
}

/* Header fixes for simplified nav layout pages */
.beats-page .nav-logo,
.zavier-page .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.beats-page .nav-logo .brand-text,
.zavier-page .nav-logo .brand-text {
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
}

.beats-page .nav-menu,
.zavier-page .nav-menu {
    align-items: center;
}

.beats-page .nav-link,
.zavier-page .nav-link {
    color: #000000;
}

.beats-page .nav-link:visited,
.zavier-page .nav-link:visited {
    color: #000000;
}

.beats-page .nav-link:hover,
.zavier-page .nav-link:hover {
    color: #000000;
}

.beats-page .nav-link.active,
.zavier-page .nav-link.active {
    color: #000000 !important;
}

.beats-page .nav-link .cyberbeats-c,
.beats-page .footer-beats-link .cyberbeats-c {
    display: inline-block;
    font-weight: 800;
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.65), 0 0 18px rgba(0, 255, 255, 0.4);
    animation: cyberbeatsCShift 14s linear infinite;
    animation-delay: -3.5s;
    animation-play-state: running !important;
    will-change: color, text-shadow;
}

.beats-page .footer-beats-link .cyberbeats-c {
    animation-delay: -10s;
}

@keyframes cyberbeatsCShift {
    0%,
    100% {
        color: #00ffff;
        text-shadow: 0 0 8px rgba(0, 255, 255, 0.65), 0 0 18px rgba(0, 255, 255, 0.4);
    }
    20% {
        color: #39ff14;
        text-shadow: 0 0 8px rgba(57, 255, 20, 0.65), 0 0 18px rgba(57, 255, 20, 0.4);
    }
    40% {
        color: #ff00ff;
        text-shadow: 0 0 8px rgba(255, 0, 255, 0.65), 0 0 18px rgba(255, 0, 255, 0.4);
    }
    60% {
        color: #00bfff;
        text-shadow: 0 0 8px rgba(0, 191, 255, 0.65), 0 0 18px rgba(0, 191, 255, 0.4);
    }
    80% {
        color: #ffd300;
        text-shadow: 0 0 8px rgba(255, 211, 0, 0.65), 0 0 18px rgba(255, 211, 0, 0.4);
    }
}

/* ========== CYBERPUNK/SCI-FI THEME FOR 7 KEYZ CYBERBEATS ========== */

/* Cyberpunk Hero Section */
.cyberbeats-hero {
    background: linear-gradient(135deg, #0a0e27 0%, #1a0a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.cyberbeats-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 255, 255, 0.03) 0px,
            rgba(0, 255, 255, 0.03) 2px,
            transparent 2px,
            transparent 4px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 0, 255, 0.02) 0px,
            rgba(255, 0, 255, 0.02) 1px,
            transparent 1px,
            transparent 2px
        );
    pointer-events: none;
    z-index: 1;
}

.cyberbeats-logo-tag {
    display: inline-block;
    color: #8ff8ff;
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 0.7rem;
    padding: 0.38rem 0.85rem;
    border: 1px solid rgba(0, 255, 255, 0.42);
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(7, 20, 42, 0.72), rgba(30, 10, 52, 0.64));
    text-shadow: 0 0 9px rgba(0, 255, 255, 0.55);
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.2), inset 0 0 10px rgba(0, 255, 255, 0.07);
    animation: cyberbeatsLabelCycle 28s linear infinite;
}

.cyberbeats-title {
    background: linear-gradient(110deg, #9efbff 5%, #ff7de9 45%, #7bc5ff 95%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 7s ease infinite;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.08;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.16));
}

.cyberbeats-tagline {
    color: #9df6cf !important;
    font-size: clamp(0.94rem, 1.6vw, 1.08rem);
    letter-spacing: 0.05em;
    text-transform: none;
    text-shadow: 0 0 10px rgba(0, 255, 163, 0.25) !important;
    font-weight: 500;
    line-height: 1.6;
    animation: neonPulse 5s ease-in-out infinite;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

/* Cyberpunk Grid Section */
.cyberbeats-section {
    background: linear-gradient(to bottom, #0a0e27, #1a0a2e 40%, #0f1419);
    position: relative;
    padding: 60px 0;
}

.cyberbeats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 255, 255, 0.02) 0px,
            rgba(0, 255, 255, 0.02) 2px,
            transparent 2px,
            transparent 4px
        );
    pointer-events: none;
}

.cyberbeats-grid .beat-card {
    border: 1.5px solid rgba(0, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(0, 15, 30, 0.9), rgba(10, 0, 30, 0.8));
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2), inset 0 0 15px rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.cyberbeats-grid .beat-card:hover {
    border-color: rgba(0, 255, 255, 0.8);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5), 0 0 35px rgba(255, 0, 255, 0.3), inset 0 0 20px rgba(0, 255, 255, 0.1);
    transform: translateY(-8px) scale(1.01);
}

.cyberbeats-grid .beat-title {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(255, 0, 255, 0.2);
}

.cyberbeats-grid .beat-note {
    color: #00ff88;
}

.cyberbeats-grid .beat-cta {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 1px solid rgba(0, 255, 255, 0.5);
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.cyberbeats-grid .beat-cta:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.4), rgba(255, 0, 255, 0.3));
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6), inset 0 0 10px rgba(0, 255, 255, 0.2);
    color: #00ffff;
}

/* Final 7 Keyz card border style override (wins over cyberbeats defaults) */
.beats-page .cyberbeats-grid .beat-card {
    background:
        linear-gradient(rgba(10, 16, 34, 0.84), rgba(10, 16, 34, 0.84)) padding-box,
        linear-gradient(135deg, rgba(255, 45, 45, 0.95), rgba(139, 0, 0, 0.9)) border-box !important;
    border: 1px solid transparent !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 45, 45, 0.42) !important;
}

.beats-page .cyberbeats-grid .beat-card:hover {
    background:
        linear-gradient(rgba(10, 16, 34, 0.84), rgba(10, 16, 34, 0.84)) padding-box,
        linear-gradient(135deg, rgba(61, 125, 255, 0.96), rgba(25, 25, 112, 0.92)) border-box !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(61, 125, 255, 0.5) !important;
}

.beats-page .cyberbeats-grid .beat-card.playing {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 45, 45, 0.48) !important;
}

/* Cyberpunk Animations */
@keyframes neonFlicker {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 255, 255, 0.3);
    }
    50% {
        opacity: 0.85;
        text-shadow: 0 0 5px rgba(0, 255, 255, 0.4), 0 0 10px rgba(0, 255, 255, 0.2);
    }
}

@keyframes neonPulse {
    0%, 100% {
        color: #00ff88;
        text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
    }
    50% {
        color: #00ffff;
        text-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
    }
}

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

@keyframes cyberbeatsLabelCycle {
    0% {
        color: #8ff8ff;
        border-color: rgba(0, 255, 255, 0.42);
        text-shadow: 0 0 9px rgba(0, 255, 255, 0.55);
        box-shadow: 0 0 18px rgba(0, 255, 255, 0.22), inset 0 0 10px rgba(0, 255, 255, 0.08);
    }
    25% {
        color: #ff8df2;
        border-color: rgba(255, 141, 242, 0.45);
        text-shadow: 0 0 9px rgba(255, 141, 242, 0.58);
        box-shadow: 0 0 18px rgba(255, 141, 242, 0.22), inset 0 0 10px rgba(255, 141, 242, 0.08);
    }
    50% {
        color: #9eff7a;
        border-color: rgba(158, 255, 122, 0.46);
        text-shadow: 0 0 9px rgba(158, 255, 122, 0.56);
        box-shadow: 0 0 18px rgba(158, 255, 122, 0.22), inset 0 0 10px rgba(158, 255, 122, 0.08);
    }
    75% {
        color: #80b9ff;
        border-color: rgba(128, 185, 255, 0.45);
        text-shadow: 0 0 9px rgba(128, 185, 255, 0.58);
        box-shadow: 0 0 18px rgba(128, 185, 255, 0.22), inset 0 0 10px rgba(128, 185, 255, 0.08);
    }
    100% {
        color: #8ff8ff;
        border-color: rgba(0, 255, 255, 0.42);
        text-shadow: 0 0 9px rgba(0, 255, 255, 0.55);
        box-shadow: 0 0 18px rgba(0, 255, 255, 0.22), inset 0 0 10px rgba(0, 255, 255, 0.08);
    }
}

/* Cyberpunk Buttons */
.cyberbeats-btn {
    font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.79rem;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, color 0.24s ease, background-color 0.24s ease;
    position: relative;
    border-radius: 12px;
    padding: 0.78rem 1.35rem !important;
    min-height: 44px;
    min-width: 230px;
    background: linear-gradient(140deg, rgba(8, 20, 44, 0.78), rgba(30, 9, 48, 0.68)) !important;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 24px rgba(3, 8, 18, 0.45), 0 0 18px rgba(109, 152, 255, 0.2), inset 0 0 0 1px rgba(132, 170, 255, 0.1);
}

.cyberbeats-btn-primary {
    border: 1px solid rgba(0, 255, 255, 0.9);
    color: #c9fdff;
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
    box-shadow: 0 10px 24px rgba(4, 12, 26, 0.45), 0 0 20px rgba(0, 255, 255, 0.48), 0 0 36px rgba(0, 255, 255, 0.2), inset 0 0 0 1px rgba(126, 255, 255, 0.2);
    animation: cyberBorderSecondary 16s ease-in-out infinite 0s, cyberButtonGlowPulse 3.6s ease-in-out infinite;
}

.cyberbeats-btn-primary:hover {
    background: linear-gradient(135deg, rgba(23, 6, 44, 0.92), rgba(6, 38, 54, 0.9)) !important;
    border-color: #ff2d2d !important;
    color: #ffe7e7 !important;
    text-shadow: 0 0 10px rgba(255, 126, 126, 0.8), 0 0 22px rgba(255, 45, 45, 0.95) !important;
    box-shadow: 0 12px 26px rgba(6, 16, 32, 0.55), 0 0 30px rgba(255, 45, 45, 0.95), 0 0 56px rgba(255, 45, 45, 0.55), 0 0 90px rgba(255, 45, 45, 0.25), inset 0 0 0 1px rgba(255, 160, 160, 0.35) !important;
    transform: translateY(-2px) scale(1.01);
    animation: none;
}

.cyberbeats-btn-secondary {
    border: 1px solid rgba(56, 255, 163, 0.95);
    color: #c8ffe4;
    text-shadow: 0 0 12px rgba(56, 255, 163, 0.45);
    box-shadow: 0 10px 24px rgba(8, 24, 18, 0.45), 0 0 20px rgba(56, 255, 163, 0.4), 0 0 36px rgba(56, 255, 163, 0.18), inset 0 0 0 1px rgba(112, 255, 192, 0.2);
    animation: cyberBorderSecondary 14s ease-in-out infinite 2.2s, cyberButtonGlowPulse 3.6s ease-in-out infinite 1.2s;
}

.cyberbeats-btn-secondary:hover {
    background: linear-gradient(135deg, rgba(5, 43, 40, 0.92), rgba(3, 22, 52, 0.9)) !important;
    border-color: #3d7dff !important;
    color: #e8f1ff !important;
    text-shadow: 0 0 10px rgba(149, 191, 255, 0.8), 0 0 22px rgba(61, 125, 255, 0.95) !important;
    box-shadow: 0 12px 26px rgba(8, 20, 28, 0.58), 0 0 30px rgba(61, 125, 255, 0.95), 0 0 56px rgba(61, 125, 255, 0.55), 0 0 90px rgba(61, 125, 255, 0.24), inset 0 0 0 1px rgba(171, 204, 255, 0.36) !important;
    transform: translateY(-2px) scale(1.01);
    animation: none;
}

.beats-page .beats-contact-btn.cyberbeats-btn-primary:hover,
.beats-page .beats-contact-btn.cyberbeats-btn-secondary:hover {
    background: inherit;
    transform: translateY(-2px) scale(1.01);
}

.beats-page .beats-contact-btn.cyberbeats-btn-primary:hover {
    background: linear-gradient(135deg, rgba(23, 6, 44, 0.92), rgba(6, 38, 54, 0.9)) !important;
    border-color: #ff2d2d !important;
    color: #ffe7e7 !important;
    text-shadow: 0 0 10px rgba(255, 126, 126, 0.8), 0 0 22px rgba(255, 45, 45, 0.95) !important;
    box-shadow: 0 12px 26px rgba(6, 16, 32, 0.55), 0 0 30px rgba(255, 45, 45, 0.95), 0 0 56px rgba(255, 45, 45, 0.55), 0 0 90px rgba(255, 45, 45, 0.25), inset 0 0 0 1px rgba(255, 160, 160, 0.35) !important;
}

.beats-page .beats-contact-btn.cyberbeats-btn-secondary:hover {
    background: linear-gradient(135deg, rgba(5, 43, 40, 0.92), rgba(3, 22, 52, 0.9)) !important;
    border-color: #3d7dff !important;
    color: #e8f1ff !important;
    text-shadow: 0 0 10px rgba(149, 191, 255, 0.8), 0 0 22px rgba(61, 125, 255, 0.95) !important;
    box-shadow: 0 12px 26px rgba(8, 20, 28, 0.58), 0 0 30px rgba(61, 125, 255, 0.95), 0 0 56px rgba(61, 125, 255, 0.55), 0 0 90px rgba(61, 125, 255, 0.24), inset 0 0 0 1px rgba(171, 204, 255, 0.36) !important;
}

@keyframes cyberButtonGlowPulse {
    0%,
    100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.08);
    }
}

@media (max-width: 768px) {
    .beats-page .beats-hero-actions {
        gap: 0.65rem;
        margin-top: 1rem;
    }

    .beats-page .cyberbeats-btn {
        width: min(100%, 320px);
        min-width: 0;
        font-size: 0.75rem;
        letter-spacing: 0.06em;
        padding: 0.72rem 1rem !important;
    }
}

@keyframes cyberBorderPrimary {
    0%   { border-color: #00ffff; color: #00ffff; box-shadow: 0 0 5px rgba(0, 255, 255, 0.35); text-shadow: 0 0 8px rgba(0, 255, 255, 0.7); }
    17%  { border-color: #ff00ff; color: #ff00ff; box-shadow: 0 0 5px rgba(255, 0, 255, 0.35); text-shadow: 0 0 8px rgba(255, 0, 255, 0.7); }
    34%  { border-color: #7b2fff; color: #7b2fff; box-shadow: 0 0 5px rgba(123, 47, 255, 0.35); text-shadow: 0 0 8px rgba(123, 47, 255, 0.7); }
    50%  { border-color: #00e5ff; color: #00e5ff; box-shadow: 0 0 5px rgba(0, 229, 255, 0.35); text-shadow: 0 0 8px rgba(0, 229, 255, 0.7); }
    67%  { border-color: #ff6ef7; color: #ff6ef7; box-shadow: 0 0 5px rgba(255, 110, 247, 0.35); text-shadow: 0 0 8px rgba(255, 110, 247, 0.7); }
    84%  { border-color: #00ffcc; color: #00ffcc; box-shadow: 0 0 5px rgba(0, 255, 204, 0.35); text-shadow: 0 0 8px rgba(0, 255, 204, 0.7); }
    100% { border-color: #00ffff; color: #00ffff; box-shadow: 0 0 5px rgba(0, 255, 255, 0.35); text-shadow: 0 0 8px rgba(0, 255, 255, 0.7); }
}

@keyframes cyberBorderSecondary {
    0%   { border-color: #00ff88; color: #00ff88; box-shadow: 0 0 5px rgba(0, 255, 136, 0.35); text-shadow: 0 0 8px rgba(0, 255, 136, 0.7); }
    17%  { border-color: #39ff14; color: #39ff14; box-shadow: 0 0 5px rgba(57, 255, 20, 0.35); text-shadow: 0 0 8px rgba(57, 255, 20, 0.7); }
    34%  { border-color: #00e5ff; color: #00e5ff; box-shadow: 0 0 5px rgba(0, 229, 255, 0.35); text-shadow: 0 0 8px rgba(0, 229, 255, 0.7); }
    50%  { border-color: #7b2fff; color: #7b2fff; box-shadow: 0 0 5px rgba(123, 47, 255, 0.35); text-shadow: 0 0 8px rgba(123, 47, 255, 0.7); }
    67%  { border-color: #00ffcc; color: #00ffcc; box-shadow: 0 0 5px rgba(0, 255, 204, 0.35); text-shadow: 0 0 8px rgba(0, 255, 204, 0.7); }
    84%  { border-color: #00ff88; color: #00ff88; box-shadow: 0 0 5px rgba(0, 255, 136, 0.35); text-shadow: 0 0 8px rgba(0, 255, 136, 0.7); }
    100% { border-color: #39ff14; color: #39ff14; box-shadow: 0 0 5px rgba(57, 255, 20, 0.35); text-shadow: 0 0 8px rgba(57, 255, 20, 0.7); }
}

@media (max-width: 768px) {
    .beats-page .nav-container,
    .zavier-page .nav-container {
        padding: 0 14px;
    }

    .beats-page .nav-logo .brand-text,
    .zavier-page .nav-logo .brand-text {
        font-size: 1.45rem;
    }

    .beats-page .logo-image,
    .zavier-page .logo-image {
        height: 34px;
        margin-right: 0;
    }

    .beats-page .nav-menu,
    .zavier-page .nav-menu {
        top: 74px;
        height: calc(100vh - 74px);
    }

    .beats-page .nav-link,
    .zavier-page .nav-link {
        color: #ffffff !important;
    }

    .beats-page .nav-link:visited,
    .zavier-page .nav-link:visited {
        color: #ffffff !important;
    }

    .beats-page .nav-link:hover,
    .zavier-page .nav-link:hover {
        color: #ffffff !important;
    }

    .beats-page .nav-link.active,
    .zavier-page .nav-link.active {
        color: #FFD700 !important;
    }
}

.slogan-lights {
    color: #8B0000;
    animation: colorShiftLights 12s ease-in-out infinite;
}

.slogan-camera {
    color: #191970;
    animation: colorShiftCamera 12s ease-in-out infinite;
}

.slogan-action {
    color: #ffffff;
    animation: colorShiftAction 12s ease-in-out infinite;
}

@keyframes colorShiftLights {
    0% { color: #8B0000; }
    33% { color: #191970; }
    66% { color: #ffffff; }
    100% { color: #8B0000; }
}

@keyframes colorShiftCamera {
    0% { color: #191970; }
    33% { color: #ffffff; }
    66% { color: #8B0000; }
    100% { color: #191970; }
}

@keyframes colorShiftAction {
    0% { color: #ffffff; }
    33% { color: #8B0000; }
    66% { color: #191970; }
    100% { color: #ffffff; }
}


/* Section Title - Professional styling for content sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 2rem;
    margin-top: 3rem;
    line-height: 1.3;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 2;
}

/* Alternative section title for better visibility */
.section-title-visible {
    font-size: 2.5rem;
    font-weight: 600;
    color: #DAA520;
    margin-bottom: 2rem;
    margin-top: 3rem;
    line-height: 1.3;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 0 15px rgba(218, 165, 32, 0.8), 2px 2px 6px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.08rem;
    color: #e0e6ed;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-content {
    position: relative;
}

.hero-watch-tv {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.7rem;
    background: linear-gradient(135deg, #c70000 0%, #001f7f 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid #000000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
    animation: heroWatchTvTextShift 10s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.hero-watch-tv:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.hero-watch-tv:active {
    transform: translateX(-50%) translateY(0);
}

@keyframes heroWatchTvTextShift {
    0%, 100% {
        color: #ffffff;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.18);
    }
    33% {
        color: #ff4b4b;
        text-shadow: 0 0 8px rgba(255, 75, 75, 0.2);
    }
    66% {
        color: #6aa8ff;
        text-shadow: 0 0 8px rgba(106, 168, 255, 0.22);
    }
}

/* Home hero polish: cleaner, more professional CTA and slogan */
body.home-page .hero-watch-tv {
    background: linear-gradient(135deg, rgba(10, 16, 30, 0.94) 0%, rgba(16, 28, 52, 0.94) 100%);
    border: 1px solid rgba(176, 196, 222, 0.38);
    color: #f5f8ff;
    text-shadow: none;
    letter-spacing: 0.08em;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
    animation: none;
}

body.home-page .hero-watch-tv:hover {
    transform: translateX(-50%) translateY(-1px);
    border-color: rgba(198, 216, 243, 0.52);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.28);
}

body.home-page .hero-slogan {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    opacity: 0.92;
    text-transform: uppercase;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow, background;
}

/* Button Icons */
.btn-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 0.9em;
    vertical-align: middle;
    line-height: 1;
}

.btn-primary .btn-icon {
    color: #FFD700;
    font-size: 0.9em;
    animation: dollarSpin 3s linear infinite;
    transform-style: preserve-3d;
    backface-visibility: visible;
    vertical-align: middle;
}

.btn-secondary .btn-icon {
    font-size: 0.75em;
    animation: starPulse 2s ease-in-out infinite;
    vertical-align: middle;
}

/* Simple Star Pulse Animation */
@keyframes starPulse {
    0%, 100% { 
        opacity: 0.7;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Gold Dollar Spin Animation */
@keyframes dollarSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.btn-primary {
    background: linear-gradient(135deg, #8B0000, #B22222) !important;
    color: white !important;
    border: 2px solid #8B0000 !important;
    box-shadow: 0 3px 8px rgba(139, 0, 0, 0.2), 
                0 0 12px rgba(139, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    will-change: transform, box-shadow, background;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #191970, #191970) !important;
    color: white !important;
    border-color: #191970 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(25, 25, 112, 0.3),
                0 0 20px rgba(25, 25, 112, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.btn-secondary {
    background: linear-gradient(135deg, #191970, #191970) !important;
    color: white !important;
    border: 2px solid #191970 !important;
    box-shadow: 0 3px 8px rgba(25, 25, 112, 0.2),
                0 0 12px rgba(25, 25, 112, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    will-change: transform, box-shadow, background;
}

.btn-secondary.cyberbeats-btn {
    background: rgba(5, 8, 20, 0.4) !important;
    box-shadow: none !important;
    text-shadow: none !important;
    color: unset !important;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #8B0000, #B22222) !important;
    color: white !important;
    border-color: #8B0000 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3),
                0 0 20px rgba(139, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

/* Cross-button hover effects triggered by JavaScript */
.btn-primary.other-hovered {
    background: linear-gradient(135deg, #191970, #4169E1) !important;
    border-color: #4169E1 !important;
    box-shadow: 0 8px 20px rgba(25, 25, 112, 0.4),
                0 0 25px rgba(25, 25, 112, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.btn-secondary.other-hovered {
    background: linear-gradient(135deg, #8B0000, #B22222) !important;
    border-color: #B22222 !important;
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4),
                0 0 25px rgba(139, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

/* Hero Button Glow Animation */
@keyframes heroButtonGlow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
    }
    25% { 
        box-shadow: 0 4px 20px rgba(220, 20, 60, 0.4), 0 0 30px rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 0 4px 25px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.3);
    }
    75% { 
        box-shadow: 0 4px 20px rgba(0, 82, 204, 0.4), 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #8B0000 0%, #191970 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
}

.section-header h2:hover {
    color: #FFA500;
    transform: scale(1.02);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 215, 0, 0.5);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #8B0000, #191970);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #FFFFFF;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Quick Process Section */
.quick-process {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
}

.quick-process .process-steps {
    margin: 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.08), rgba(139, 0, 0, 0.08));
    border-radius: 15px;
    border: 2px solid rgba(25, 25, 112, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.quick-process .process-steps h3 {
    color: #191970;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(25, 25, 112, 0.1);
}

/* Services Section */
.services {
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.services-grid .container {
    text-align: center;
}

.services-grid .section-subtitle {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

.animated-subtitle-link {
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    animation: subtitleColorShift 4s ease-in-out infinite;
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.45);
}

@keyframes subtitleColorShift {
    0%, 100% { color: #1e90ff; }
    25% { color: #ff3b30; }
    50% { color: #ffffff; }
    75% { color: #ffd700; }
}

/* Clear, crisp title visibility within services grid */
.services-grid .section-title {
    /* Clean, simple gold color */
    color: #FFD700 !important;
    background: none !important;
    -webkit-background-clip: none !important;
    -moz-background-clip: none !important;
    background-clip: none !important;
    -webkit-text-fill-color: #FFD700 !important;
    -moz-text-fill-color: #FFD700 !important;
    /* No shadows, no blur, just clean text */
    text-shadow: none !important;
    font-weight: 700 !important;
    /* No backgrounds, borders, or blur effects */
    padding: 0 !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Simple gold title override */
.gold-title {
    color: #FFD700 !important;
    background: none !important;
    -webkit-text-fill-color: #FFD700 !important;
    text-shadow: none !important;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Service Pricing Badge */
.service-pricing {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #8B0000, #191970);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    animation: pricePulse 3s ease-in-out infinite;
    z-index: 10;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50%, 50%);
}

.service-icon {
    color: #007bff;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00FFFF; /* Cyan for better visibility on grey buttons */
    margin-bottom: 1rem;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-shadow: 
        /* Single clean shadow for depth */
        0 2px 8px rgba(0, 0, 0, 0.3),
        /* Subtle cyan glow for visibility */
        0 0 20px rgba(0, 255, 255, 0.4);
    transform: translateZ(10px); /* Pop out effect */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Make page titles clickable too */
.hero-title, 
.services-hero-title,
.section-header h2 {
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-title:hover,
.services-hero-title:hover,
.section-header h2:hover {
    transform: scale(1.02);
}

.service-card h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    z-index: -1;
    transition: all 0.4s ease;
}

.service-card h3::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    border-radius: 8px;
    z-index: -1;
    transition: left 1.5s ease;
}

.service-card:hover h3 {
    background: linear-gradient(135deg, #8B0000, #191970, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: none; /* Stop neon glow on hover to show gradient */
    text-shadow: none; /* Remove text shadow for gradient effect */
}

.service-card:hover h3::after {
    left: 100%;
}

@keyframes neonGlow {
    from {
        text-shadow: 
            /* White outline for contrast */
            -2px -2px 0 #ffffff,
            2px -2px 0 #ffffff,
            -2px 2px 0 #ffffff,
            2px 2px 0 #ffffff,
            /* Black shadow for depth */
            -3px -3px 0 #000000,
            3px 3px 0 #000000,
            /* Neon glow layers */
            0 0 5px #191970,
            0 0 10px #191970,
            0 0 15px #191970,
            0 0 20px #191970;
    }
    to {
        text-shadow: 
            /* White outline for contrast */
            -2px -2px 0 #ffffff,
            2px -2px 0 #ffffff,
            -2px 2px 0 #ffffff,
            2px 2px 0 #ffffff,
            /* Black shadow for depth */
            -3px -3px 0 #000000,
            3px 3px 0 #000000,
            /* Enhanced neon glow */
            0 0 10px #191970,
            0 0 20px #191970,
            0 0 30px #191970,
            0 0 40px #191970,
            0 0 50px #4169E1;
    }
}

/* Call to Action Popup Modal */
.cta-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

@media (max-width: 600px) {
    .cta-modal {
        display: none;
        position: fixed !important;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        box-sizing: border-box;
    }
    .cta-modal.show {
        display: flex !important;
    }
    .cta-modal-content {
        position: relative !important;
        max-width: 98vw !important;
        width: 100vw !important;
        min-width: 0 !important;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
        border-radius: 14px !important;
        padding: 1.2rem 0.7rem !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
        display: block !important;
    }
}

.cta-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.cta-modal-content {
    background: #1b1b3c;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10001;
    display: block;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-modal h2 {
    color: #FFD700 !important;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: none !important;
    -webkit-background-clip: none !important;
    -webkit-text-fill-color: #FFD700 !important;
    background-clip: none !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8) !important;
}

.cta-modal p {
    color: #ffffff !important;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
}

.cta-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    background: linear-gradient(135deg, #8B0000, #B22222);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    background: linear-gradient(135deg, #A00000, #CD5C5C);
    text-decoration: none;
    color: white;
}

.cta-btn-secondary {
    background: linear-gradient(135deg, #191970, #4169E1);
    box-shadow: 0 4px 15px rgba(25, 25, 112, 0.3);
}

.cta-btn-secondary:hover {
    background: linear-gradient(135deg, #1E1E8F, #4682B4);
    box-shadow: 0 8px 25px rgba(25, 25, 112, 0.4);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: white;
}

.service-card p {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Service Quote Button */
.service-quote-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #8B0000;
    border: 2px solid #8B0000;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.service-quote-btn:hover {
    background-color: #8B0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
    animation: quoteButtonFade 3s ease-in-out infinite;
}

@keyframes quoteButtonFade {
    0% {
        background-color: #8B0000;
        box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
    }
    50% {
        background-color: #191970;
        box-shadow: 0 8px 20px rgba(25, 25, 112, 0.4);
    }
    100% {
        background-color: #8B0000;
        box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
    }
}

/* Animated Emoji Styles */
.animated-emoji {
    font-size: 3rem;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Zoom In Animation - Subtle */
.zoom-in {
    animation: zoomIn 3s ease-in-out infinite;
}

@keyframes zoomIn {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Shake Animation - Gentle */
.shake {
    animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Glow Animation - Enhanced Visibility */
.glow {
    animation: glow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 12px #00ffff);
}

@keyframes glow {
    0%, 100% { 
        filter: drop-shadow(0 0 8px #00ffff) drop-shadow(0 0 16px #00ffff); 
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 20px #00ffff) drop-shadow(0 0 30px #00ffff); 
        transform: scale(1.05);
    }
}

/* Sparkle Animation - Changed to Simple Pulse */
.sparkle {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Smooth Pulse Animation - For Website Design */
.smooth-pulse {
    animation: smoothPulse 3s ease-in-out infinite;
}

@keyframes smoothPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 1;
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.08) rotate(0deg); 
        opacity: 0.9;
        filter: brightness(1.2);
    }
}

/* Wave Animation */
.wave {
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.05); }
    50% { transform: scale(1.1); }
    75% { transform: scale(1.05); }
}

/* Pulse Star Animation - For Post-Production */
.pulse-star {
    animation: pulseStar 2.5s ease-in-out infinite;
}

@keyframes pulseStar {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 1;
        filter: brightness(1) drop-shadow(0 0 5px #ffd700);
    }
    50% { 
        transform: scale(1.12) rotate(0deg); 
        opacity: 0.9;
        filter: brightness(1.3) drop-shadow(0 0 15px #ffd700);
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-text p {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Main Services Section */
.services {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(25, 25, 112, 0.1) 50%, rgba(75, 0, 130, 0.1) 100%);
    backdrop-filter: blur(10px);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(139, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(25, 25, 112, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B0000, #191970, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-text > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(139, 0, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B0000, #191970);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-logo img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(139, 0, 0, 0.3));
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, #191970 0%, #8B0000 50%, #4B0082 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.team-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Mission & Values Section */
.mission-values {
    padding: 5rem 0;
    background: linear-gradient(135deg, #8B0000 0%, #191970 50%, #4B0082 100%);
    position: relative;
    overflow: hidden;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.mission-values::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(139, 0, 0, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(139, 0, 0, 0.05), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.value-card:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(20%, 20%);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 0, 0, 0.3);
    box-shadow: 0 16px 48px rgba(139, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.value-card h3 {
    color: #8B0000;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card p {
    color: #2c3e50;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Responsive improvements for About page */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text > p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mission-values,
    .team-section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
    
    .member-avatar {
        font-size: 3rem;
    }
}

/* Contact Methods Section */
.contact-methods {
    padding: 5rem 0;
    background: linear-gradient(135deg, #8B0000 0%, #191970 50%, #4B0082 100%);
    position: relative;
    overflow: hidden;
}

.contact-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.contact-methods::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, #191970 0%, #8B0000 50%, #4B0082 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Services Details Section */
.services-details {
    padding: 4rem 0;
    background: transparent;
    color: #333333;
    position: relative;
    z-index: 1;
}

/* Ensure galaxy background is visible behind services section */
.services-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(25, 25, 112, 0.05) 50%, rgba(75, 0, 130, 0.05) 100%);
    z-index: -1;
}

.services-details h2,
.services-details h3,
.services-details h4 {
    color: #8B0000;
}

.services-details p {
    color: #333333;
}

/* Only make the description under "Why Choose Z7 Universe?" gold */
.services-details .section-header p {
    color: #FFD700 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7) !important;
}

.services-highlight {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(25, 25, 112, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(139, 0, 0, 0.1);
}

/* Team Member Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.team-member {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(139, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 0, 0, 0.3);
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.15);
}

/* Small external link button in top-right of team member cards */
.external-link-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #191970;
    color: #fff;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.15s ease, filter 0.15s ease;
    animation: linkColorShift 10s ease-in-out infinite;
    -webkit-animation: linkColorShift 10s ease-in-out infinite;
    z-index: 5;
}
.external-link-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

@keyframes linkColorShift {
    0% { background: #191970; color: #ffffff; }
    25% { background: #8B0000; color: #ffffff; }
    50% { background: #000000; color: #FFD700; }
    75% { background: #DAA520; color: #000000; }
    100% { background: #191970; color: #ffffff; }
}

/* Different phases so buttons aren't synchronized */
.external-link-btn.link-phase-1 {
    animation-duration: 10s;
    animation-delay: 0s;
}
.external-link-btn.link-phase-2 {
    animation-duration: 10s;
    animation-delay: 3s; /* start 3s later to be out-of-phase */
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.team-member h3 {
    color: #8B0000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #191970;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    color: #2c3e50;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Contact Method Cards */
.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.method-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.method-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(139, 0, 0, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.method-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.method-card h3 {
    color: #8B0000;
    margin-bottom: 15px;
    font-weight: 700;
}

.method-card p {
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 20px;
}

.method-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #8B0000, #191970);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.method-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

/* FAQ Items */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(139, 0, 0, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    color: #8B0000;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-item p {
    color: #2c3e50;
    line-height: 1.6;
}

.services-highlight h3 {
    color: #8B0000;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    width: 100%;
    box-sizing: border-box;
}

.service-item {
    text-align: center;
    padding: 0.8rem 0.5rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 1px solid rgba(139, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.12);
}

.service-icon {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    display: block;
    transition: transform 0.2s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.css-star {
    background: linear-gradient(135deg, #191970, #4169E1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(25, 25, 112, 0.3));
    transition: all 0.3s ease;
}

.service-item:hover .css-star {
    background: linear-gradient(135deg, #8B0000, #B22222);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(139, 0, 0, 0.4));
    transform: scale(1.1);
}

.clean-star {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
    }
}

.service-item h4 {
    color: #191970;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    line-height: 1.1;
}

.service-item p {
    color: #666;
    font-size: 0.7rem;
    line-height: 1.2;
    margin: 0;
}

.process-steps {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.05), rgba(139, 0, 0, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(25, 25, 112, 0.1);
}

.process-steps h3 {
    color: #191970;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    text-align: center;
    font-weight: 600;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.step {
    text-align: center;
    padding: 1.2rem 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(25, 25, 112, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(25, 25, 112, 0.15);
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #8B0000, #191970);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.step h4 {
    color: #8B0000;
    font-size: 1rem;
    margin: 0.6rem 0 0.3rem 0;
    font-weight: 600;
}

.step p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.3;
    margin: 0;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 4rem 2rem;
    color: #666;
    font-size: 1.1rem;
}

/* Portfolio Section */
.portfolio {
    background-color: #f8f9fa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 
                0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.portfolio-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 
                0 8px 20px rgba(139, 0, 0, 0.15),
                0 0 40px rgba(25, 25, 112, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.2);
}

@keyframes portfolioGlow {
    0% {
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15), 
                    0 0 20px rgba(139, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15), 
                    0 0 30px rgba(25, 25, 112, 0.4);
    }
    100% {
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15), 
                    0 0 20px rgba(139, 0, 0, 0.3);
    }
}

.portfolio-image .image-placeholder {
    background: linear-gradient(135deg, #1b2735 0%, #090a0f 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-family: 'Orbitron', 'Exo 2', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                 0 0 30px rgba(139, 0, 0, 0.6),
                 0 0 40px rgba(25, 25, 112, 0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: z7tvTextGlow 9s ease-in-out infinite;
}

.z7tv-feature-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.z7tv-feature-link .portfolio-image {
    transition: transform 0.4s ease;
}

.z7tv-feature-link:hover .portfolio-image {
    transform: translateY(-4px);
}

@keyframes z7tvTextGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                     0 0 30px rgba(139, 0, 0, 0.6),
                     0 0 40px rgba(25, 25, 112, 0.4);
    }
    25% {
        text-shadow: 0 0 25px rgba(255, 0, 0, 0.9),
                     0 0 35px rgba(255, 0, 0, 0.7),
                     0 0 45px rgba(255, 0, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 25px rgba(0, 0, 255, 0.9),
                     0 0 35px rgba(0, 0, 255, 0.7),
                     0 0 45px rgba(0, 0, 255, 0.5);
    }
    75% {
        text-shadow: 0 0 25px rgba(255, 215, 0, 0.9),
                     0 0 35px rgba(255, 215, 0, 0.7),
                     0 0 45px rgba(255, 215, 0, 0.5);
    }
}

.portfolio-image .image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 0, 0, 0.8), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(0, 255, 0, 0.6), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(0, 100, 255, 0.7), transparent),
        radial-gradient(1px 1px at 15px 80px, rgba(255, 215, 0, 0.9), transparent),
        radial-gradient(2px 2px at 70px 20px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 85px 60px, rgba(255, 20, 147, 0.6), transparent),
        radial-gradient(2px 2px at 30px 50px, rgba(50, 205, 50, 0.7), transparent),
        radial-gradient(1px 1px at 60px 10px, rgba(255, 69, 0, 0.8), transparent);
    background-size: 120px 100px;
    animation: starsTwinkle 15s ease-in-out infinite;
    z-index: 1;
}

.portfolio-info {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(139, 0, 0, 0.1);
}

.portfolio-info h3 {
    font-family: 'Orbitron', 'Exo 2', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B0000, #191970, #FFD700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.4rem;
    letter-spacing: 0.25px;
    text-shadow: 0 2px 4px rgba(139, 0, 0, 0.1);
}

.z7tv-header-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding-bottom: 0;
}

.z7tv-header-container h3 {
    margin-bottom: 0.15rem !important;
    display: block;
}

.z7tv-next-box {
    display: grid;
    position: static;
    left: 0;
    width: calc(100% + 3.5rem);
    min-height: 36px;
    padding: 0.36rem 0.65rem;
    background: linear-gradient(115deg, rgba(10, 14, 39, 0.96), rgba(18, 12, 46, 0.94) 55%, rgba(7, 26, 42, 0.95));
    border: 1px solid rgba(0, 255, 255, 0.78);
    border-radius: 6px;
    align-items: center;
    grid-template-columns: auto minmax(220px, 1fr) auto auto;
    gap: 0.55rem;
    text-align: left;
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.34), 0 0 30px rgba(123, 47, 255, 0.22), inset 0 0 12px rgba(0, 255, 255, 0.12);
    animation: z7tvNeonBorder 10s ease-in-out infinite;
    overflow: hidden;
    z-index: 10;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
    color: inherit;
    margin: 0 0 0 -1.75rem;
}

.z7tv-next-box:hover {
    border-color: rgba(110, 227, 255, 0.95);
    box-shadow: 0 0 22px rgba(0, 255, 255, 0.58), 0 0 42px rgba(123, 47, 255, 0.34), inset 0 0 16px rgba(0, 255, 255, 0.2);
    transform: translateY(-1px);
}

.z7tv-next-box:visited,
.z7tv-next-box * {
    color: inherit;
}

.next-box-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.45rem;
    font-weight: 800;
    color: #00ffff;
    letter-spacing: 0.14em;
    white-space: nowrap;
    text-transform: uppercase;
    padding: 0.16rem 0.42rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 255, 0.45);
    background: rgba(0, 255, 255, 0.08);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: z7tvLabelGlow 2s ease-in-out infinite;
}

.next-box-item {
    display: inline-flex;
    align-items: baseline;
    gap: 0.26rem;
    min-width: 0;
}

.next-box-item-label {
    font-size: 0.41rem;
    font-weight: 700;
    color: rgba(189, 230, 255, 0.92);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.next-box-item-value {
    font-size: 0.46rem;
    font-weight: 600;
    color: #9fffe0;
    letter-spacing: 0.04em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.next-box-item-countdown {
    justify-self: center;
}

.next-box-item-channel {
    justify-self: end;
}

@keyframes z7tvNeonBorder {
    0% { border-color: #00ffff; box-shadow: 0 0 15px rgba(0, 255, 255, 0.4), inset 0 0 10px rgba(0, 255, 255, 0.1); }
    25% { border-color: #ff6ef7; box-shadow: 0 0 15px rgba(255, 110, 247, 0.4), inset 0 0 10px rgba(255, 110, 247, 0.1); }
    50% { border-color: #00ff88; box-shadow: 0 0 15px rgba(0, 255, 136, 0.4), inset 0 0 10px rgba(0, 255, 136, 0.1); }
    75% { border-color: #1a6aff; box-shadow: 0 0 15px rgba(26, 106, 255, 0.4), inset 0 0 10px rgba(26, 106, 255, 0.1); }
    100% { border-color: #00ffff; box-shadow: 0 0 15px rgba(0, 255, 255, 0.4), inset 0 0 10px rgba(0, 255, 255, 0.1); }
}

@keyframes z7tvLabelGlow {
    0%, 100% { color: #00ffff; text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { color: #00ffcc; text-shadow: 0 0 12px rgba(0, 255, 204, 0.8); }
}

.next-box-timer {
    font-family: 'Courier New', monospace;
    font-size: 0.58rem;
    font-weight: 700;
    color: #ff1a4a;
    margin: 0;
    letter-spacing: 0.06em;
    white-space: nowrap;
    text-shadow: 0 0 8px rgba(255, 26, 74, 0.6);
    animation: z7tvTimerPulse 1.5s ease-in-out infinite;
}

@keyframes z7tvTimerPulse {
    0%, 100% { color: #ff1a4a; text-shadow: 0 0 8px rgba(255, 26, 74, 0.6); }
    50% { color: #ff6ef7; text-shadow: 0 0 12px rgba(255, 110, 247, 0.8); }
}

@media (max-width: 768px) {
    .z7tv-next-box {
        width: 100%;
        margin: 0;
        min-height: 36px;
        padding: 0.38rem 0.52rem;
        grid-template-columns: 1fr 1fr;
        gap: 0.34rem 0.45rem;
    }

    .next-box-pill,
    .next-box-item,
    .next-box-item-countdown,
    .next-box-item-channel {
        justify-self: start;
    }

    .next-box-item-value {
        white-space: normal;
    }

    .next-box-item-countdown .next-box-timer {
        font-size: 0.54rem;
    }
}

.portfolio-info p {
    color: #191970;
    font-size: 0.5rem;
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 0.15px;
    opacity: 0.9;
    line-height: 1.4;
    margin: 0 !important;
}

/* YouTube Video Preview Styling */
.portfolio-video {
    padding: 0 2.5rem 2rem 2.5rem;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.portfolio-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 315px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-video iframe:hover {
    transform: scale(1.02);
}

/* Keep the Z7 TV player from growing too large on wide screens */
.z7tv-feature-item {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
}

.z7tv-feature-item .portfolio-video {
    padding: 0 1.75rem 1.6rem;
}

.z7tv-feature-item .portfolio-video iframe {
    min-height: clamp(220px, 34vw, 340px);
}

/* Responsive video sizing */
@media (max-width: 992px) {
    .portfolio-video iframe {
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .portfolio-video iframe {
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .portfolio-video iframe {
        min-height: 180px;
    }
    
    .portfolio-video {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .z7tv-feature-item .portfolio-video {
        padding: 0 1.1rem 1.2rem;
    }
}

/* Contact Section */
.contact .section-header p {
    color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(25, 25, 112, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #8B0000;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item p {
    color: #ffffff;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item p a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item p a:hover {
    color: #00ffff;
    text-decoration: underline;
    text-shadow: 0 0 15px #00ffff;
    transform: scale(1.05);
}

.business-hours p {
    transition: all 0.3s ease;
    cursor: pointer;
}

.business-hours:hover p {
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
    transform: scale(1.05);
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #000;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #999;
}

.footer-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-beats-link {
    margin-left: auto;
}

.footer-links a:hover {
    color: white;
}

.footer-brochure-link {
    background: none !important;
    animation: footerChannelColorShift 12s ease-in-out infinite;
    color: inherit;
    padding: 0 !important;
    border-radius: 0 !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
    letter-spacing: 0.02em;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.18);
    will-change: color, text-shadow, transform;
    position: relative !important;
    overflow: visible !important;
    cursor: pointer !important;
    display: inline !important;
    z-index: auto !important;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
}

@keyframes footerChannelColorShift {
    0%, 100% {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.22), 0 0 18px rgba(255, 255, 255, 0.12);
    }
    25% {
        color: #5da9ff;
        text-shadow: 0 0 12px rgba(93, 169, 255, 0.3), 0 0 22px rgba(93, 169, 255, 0.18);
    }
    50% {
        color: #ff5a5a;
        text-shadow: 0 0 12px rgba(255, 90, 90, 0.3), 0 0 22px rgba(255, 90, 90, 0.18);
    }
    75% {
        color: #f4cf68;
        text-shadow: 0 0 12px rgba(244, 207, 104, 0.32), 0 0 22px rgba(244, 207, 104, 0.18);
    }
}

@keyframes brochure-gradient-fade {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@-webkit-keyframes brochure-gradient-fade {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.footer-brochure-link:active {
    transform: none !important;
    text-shadow: 0 0 10px currentColor !important;
    transition: text-shadow 0.1s ease !important;
}

.footer-brochure-link:hover {
    color: inherit !important;
    text-decoration: none !important;
    background: none !important;
    border-color: transparent !important;
    transform: scale(1.06) !important;
    box-shadow: none !important;
    text-shadow: 0 0 14px currentColor, 0 0 24px currentColor !important;
}

/* Mobile-specific footer button styles */
@media (max-width: 768px) {
    .footer-brochure-link {
        padding: 0 !important;
        font-size: 0.9rem !important;
        min-height: 0 !important;
        min-width: 0 !important;
        margin: 0 !important;
        display: inline !important;
        text-align: center !important;
        width: auto !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease !important;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.18) !important;
        will-change: color, text-shadow, transform !important;
        background: none !important;
        animation: footerChannelColorShift 12s ease-in-out infinite !important;
    }
    .footer-brochure-link:hover {
        background: none !important;
        border-color: transparent !important;
        transform: none !important;
        box-shadow: none !important;
        text-shadow: 0 0 12px currentColor !important;
    }
    .footer-brochure-link:active {
        background: none !important;
        transform: none !important;
        transition: text-shadow 0.1s ease !important;
    }
}


.footer-social p {
    color: #999;
    margin-bottom: 1rem;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: #999;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-link.tiktok:hover {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    color: white;
    border-color: transparent;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
    border-color: transparent;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-color: transparent;
}

.social-icon {
    font-size: 1.2rem;
    animation: socialPulse 3s ease-in-out infinite;
}

.star-mini {
    font-size: 0.8rem;
    margin-left: auto;
    animation: starFloat 2s ease-in-out infinite;
    font-weight: bold;
}

.star-mini.red {
    color: #8B0000 !important;
    text-shadow: 0 0 3px rgba(139, 0, 0, 0.5);
    animation-delay: 0s;
}

.star-mini.blue {
    color: #191970 !important;
    text-shadow: 0 0 3px rgba(25, 25, 112, 0.5);
    animation-delay: 0.7s;
}

.star-mini.white {
    color: white !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation-delay: 1.4s;
}

.social-text {
    font-weight: 600;
}

/* Social Icon Animation */
@keyframes socialPulse {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.1);
    }
}

/* Star Float Animation */
@keyframes starFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-3px) scale(1.2);
        opacity: 1;
    }
}

/* Price Badge Pulse Animation */
@keyframes pricePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(139, 0, 0, 0.5);
    }
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

.footer-visitor-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.55rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 255, 0.18);
    background: rgba(4, 10, 22, 0.32);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.08), inset 0 0 10px rgba(255, 0, 0, 0.08);
}

.footer-visitor-counter::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f2ea, #8a2be2, #ff2d55);
    box-shadow: 0 0 10px rgba(0, 242, 234, 0.45);
    animation: visitorBeacon 2.6s ease-in-out infinite;
}

.footer-visitor-label {
    opacity: 0.65;
}

.footer-visitor-number {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    color: #d7ffff;
    text-shadow: 0 0 8px rgba(0, 242, 234, 0.22);
    animation: visitorColorCycle 18s ease-in-out infinite;
    transition: transform 0.18s ease, opacity 0.18s ease, text-shadow 0.18s ease;
}

.footer-visitor-counter.is-updating .footer-visitor-number {
    transform: translateY(-1px) scale(1.08);
    opacity: 1;
    text-shadow: 0 0 12px rgba(0, 242, 234, 0.42), 0 0 16px rgba(255, 45, 85, 0.2);
}

@keyframes visitorBeacon {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes visitorColorCycle {
    0%,
    100% {
        color: #ff3b3b;
        text-shadow: 0 0 8px rgba(255, 59, 59, 0.35), 0 0 14px rgba(255, 59, 59, 0.18);
    }
    16% {
        color: #3b7bff;
        text-shadow: 0 0 8px rgba(59, 123, 255, 0.38), 0 0 14px rgba(59, 123, 255, 0.2);
    }
    32% {
        color: #ffffff;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.42), 0 0 14px rgba(255, 255, 255, 0.2);
    }
    48% {
        color: #ffd86a;
        text-shadow: 0 0 8px rgba(255, 216, 106, 0.4), 0 0 14px rgba(255, 216, 106, 0.22);
    }
    64% {
        color: #ff4fd8;
        text-shadow: 0 0 8px rgba(255, 79, 216, 0.4), 0 0 14px rgba(255, 79, 216, 0.22);
    }
    80% {
        color: #00d9ff;
        text-shadow: 0 0 8px rgba(0, 217, 255, 0.4), 0 0 14px rgba(0, 217, 255, 0.22);
    }
}

/* Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes sciFiPulse {
    0% {
        box-shadow: 0 0 20px 8px rgba(255, 0, 0, 0.8), 0 0 40px 12px rgba(255, 0, 0, 0.5), inset 0 0 20px rgba(255, 0, 0, 0.3);
    }
    25% {
        box-shadow: 0 0 30px 12px rgba(0, 255, 255, 0.9), 0 0 50px 16px rgba(0, 255, 255, 0.6), inset 0 0 30px rgba(0, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 40px 14px rgba(138, 43, 226, 0.8), 0 0 60px 18px rgba(138, 43, 226, 0.5), inset 0 0 40px rgba(138, 43, 226, 0.3);
    }
    75% {
        box-shadow: 0 0 30px 12px rgba(0, 255, 136, 0.9), 0 0 50px 16px rgba(0, 255, 136, 0.6), inset 0 0 30px rgba(0, 255, 136, 0.4);
    }
    100% {
        box-shadow: 0 0 20px 8px rgba(255, 0, 0, 0.8), 0 0 40px 12px rgba(255, 0, 0, 0.5), inset 0 0 20px rgba(255, 0, 0, 0.3);
    }
}

/* Beat Card LED Pulse on Play */
.beat-card.playing {
    animation: sciFiPulse 2.5s ease-in-out infinite;
}

/* Keep 7 Keyz card outline clean while playing (no global neon pulse) */
.beats-page .beat-card.playing {
    animation: none !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(139, 0, 0, 0.45), 0 0 16px rgba(25, 25, 112, 0.28) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-live-section {
        margin-top: 2rem;
    }
    
    .live-banner {
        margin: 0 1rem;
        padding: 1.5rem;
        max-width: none;
    }

    .youtube-release-section .live-banner {
        margin: 0 auto;
        max-width: 680px;
        padding: 0.62rem 0.75rem;
    }
    
    .live-title {
        font-size: 1.2rem;
    }
    
    .countdown-timer {
        font-size: 1.5rem;
        padding: 0.4rem 0.8rem;
    }
    
    .live-join-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tiktok-icon {
        font-size: 1.5rem;
    }

    .tiktok-preview-card {
        padding: 0.7rem;
    }

    .tiktok-preview-wrap {
        margin: 1.1rem 1rem 0;
        width: auto;
    }

    .tiktok-preview-title {
        font-size: 0.85rem;
        margin-bottom: 0.55rem;
    }

    /* Hero inline process mobile styles */
    .hero-process {
        margin-top: 2rem;
        padding: 0 10px;
    }

    .process-steps-inline {
        padding: 1rem;
    }

    .process-steps-inline h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .tv-player-card {
        padding: 1rem 1rem 1.5rem;
        border-radius: 22px;
    }

    .tv-frame {
        padding: 0.75rem;
        border-radius: 20px;
    }

    .tv-screen {
        border-width: 4px;
        border-radius: 14px;
    }

    .tv-stand {
        width: 120px;
        height: 14px;
        margin-top: 14px;
    }

    .tv-stand::before {
        width: 42px;
        height: 16px;
    }

    .tv-stand::after {
        width: 170px;
    }

    .steps-inline {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .step-inline {
        padding: 0.8rem 0.5rem;
    }

    .step-number-inline {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }

    .step-inline h4 {
        font-size: 0.8rem;
    }

    .step-inline p {
        font-size: 0.65rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Mobile Search Navigation */
    .search-nav {
        padding: 8px 0;
    }
    
    .search-container {
        max-width: 100%;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .search-input {
        font-size: 16px; /* Prevent mobile zoom - must be 16px or larger */
        padding: 8px 12px;
        border-radius: 15px;
        width: 100%;
        -webkit-text-size-adjust: 100%; /* Prevent text size adjustment */
        -webkit-appearance: none; /* Remove default styling */
        appearance: none; /* Standard property */
        -webkit-tap-highlight-color: transparent; /* Remove tap highlight */
    }
    
    .search-input::placeholder {
        font-size: 16px; /* Must match input font-size */
    }
    
    .search-btn {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }
    
    .search-icon {
        font-size: 12px;
    }
    
    .search-results {
        width: calc(100vw - 40px);
        left: -10px;
        margin-top: 5px;
        max-height: 200px;
    }
    
    .search-result-item {
        padding: 8px 12px;
    }
    
    .result-title {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .result-section {
        font-size: 10px;
    }

    /* Optimize animations for mobile */
    body::before,
    body::after {
        animation-duration: 300s, 400s;
        opacity: 0.5;
    }
    
    .live-dot-nav,
    .live-dot-footer {
        animation-duration: 3s, 4s;
    }
    
    /* Reduce emoji animations on mobile */
    .step-inline:nth-child(1) h4,
    .step-inline:nth-child(2) h4,
    .step-inline:nth-child(3) h4 {
        animation-duration: 4s, 5s, 6s;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-hero-title {
        font-size: 2.2rem;
    }

    .marketing-packages-title {
        top: -50px !important;
    }

    .services-hero {
        padding: 60px 0 50px;
        min-height: auto;
    }

    .services-hero-content {
        padding: 30px 15px;
    }

    .services-hero-highlights {
        gap: 1rem;
    }

    .highlight-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
        margin-top: 2rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-watch-tv {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        margin: 0.5rem auto 1rem;
        width: fit-content;
    }

    .hero-watch-tv:hover,
    .hero-watch-tv:active {
        transform: none;
    }

    .hero-slogan {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-image {
        height: 35px;
    }

    .footer-logo-image {
        height: 30px;
    }

    .rotating-logo {
        height: 160px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-watch-tv {
        margin: 0.4rem auto 0.9rem;
        font-size: 0.68rem;
    }

    .services-hero-title {
        font-size: 1.8rem;
    }

    .hero-slogan {
        margin-top: 0.25rem;
        margin-bottom: 0.9rem;
        font-size: 0.68rem;
    }

    .marketing-packages-title {
        top: -50px !important;
    }

    .services-hero {
        padding: 50px 0 40px;
        min-height: auto;
    }

    .services-hero-content {
        padding: 20px 15px;
    }

    .services-hero-highlights {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .highlight-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-top: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    /* About section mobile styles */
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        width: 100%;
    }

    .service-item {
        padding: 0.8rem 0.4rem;
        min-height: 100px;
    }

    .service-icon {
        font-size: 1.3rem;
    }

    .service-item h4 {
        font-size: 0.8rem;
    }

    .service-item p {
        font-size: 0.65rem;
    }

    /* Quick Process mobile styles */
    .quick-process {
        padding: 2rem 0;
    }

    .quick-process .process-steps {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .quick-process .process-steps h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step {
        padding: 1.2rem 0.8rem;
    }

    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .step h4 {
        font-size: 0.9rem;
    }

    .step p {
        font-size: 0.75rem;
    }

    .services-highlight, .process-steps {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    /* Black backgrounds for about and contact sections on mobile */
    .about, .contact {
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
    }
}

/* Removed spinning animation for website design - using smooth-pulse instead */

/* Services Preview Section */
.services-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(25, 25, 112, 0.1) 50%, rgba(75, 0, 130, 0.1) 100%);
    backdrop-filter: blur(10px);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.preview-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.preview-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.preview-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.preview-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.preview-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #8B0000, #191970);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(25, 25, 112, 0.2);
    background: linear-gradient(45deg, #191970, #191970);
}

/* Company Overview Section */
.company-overview {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text h2 {
    background: linear-gradient(135deg, #8B0000, #191970, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.overview-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #8B0000, #191970);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.overview-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(25, 25, 112, 0.2);
    background: linear-gradient(45deg, #191970, #191970);
}

.overview-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview-logo {
    position: relative;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9) 0%, rgba(25, 25, 112, 0.9) 50%, rgba(75, 0, 130, 0.9) 100%);
    backdrop-filter: blur(20px);
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-contact-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-contact-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Keep iOS phone auto-links styled like normal text in homepage CTA */
.cta-contact-info a,
.cta-contact-info a[href^="tel"],
.cta-contact-info a[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font: inherit !important;
    -webkit-text-fill-color: currentColor !important;
}

/* Mobile Responsive for new sections */
@media (max-width: 768px) {
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .preview-card {
        padding: 20px;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .overview-text h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* Business Card Modal */
.business-card-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.business-card-modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.business-card-modal-content {
    background: linear-gradient(135deg, rgba(27, 27, 60, 0.98), rgba(139, 0, 0, 0.98));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: modalFadeIn 0.3s ease-out;
    position: relative;
    backdrop-filter: blur(10px);
}

.business-card-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.business-card-close:hover {
    color: #FFD700;
}

.business-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.business-card-img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.business-card-img:hover {
    transform: scale(1.05);
}

.business-card-download {
    margin-top: 1rem;
}

.download-btn {
    background: linear-gradient(135deg, #8B0000, #B22222);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    background: linear-gradient(135deg, #A00000, #CD5C5C);
    text-decoration: none;
    color: white;
}

/* Team Member Click Hints */
.business-card-hint {
    font-size: 0.9rem;
    color: #FFD700;
    margin-top: 0.5rem;
    opacity: 0.8;
    font-style: italic;
}

.team-member {
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-member:hover .business-card-hint {
    opacity: 1;
    color: #00FFFF;
}

@media (max-width: 768px) {
    .business-card-modal-content {
        padding: 1.5rem;
        margin: 10px;
    }
    
    .business-card-img {
        max-height: 300px;
    }
}

/* Why Choose Z7 Universe Benefits Section - Gold Text with High Specificity */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* High specificity selectors to override any existing styles */
.benefits-grid .benefit-card .benefit-title,
.benefits-grid .benefit-card h3.benefit-title,
.benefit-card .benefit-title {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8) !important;
}

.benefits-grid .benefit-card .benefit-description,
.benefits-grid .benefit-card p.benefit-description,
.benefit-card .benefit-description {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    opacity: 1 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
    font-weight: 400 !important;
}

/* Mobile Footer Optimization */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        gap: 0.8rem;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-beats-link {
        margin-left: 0;
    }
    
    .footer-social .social-links {
        gap: 1rem;
        justify-content: center;
    }
}

/* Real-time Clock and Weather Widget */
.top-widget {
    display: none !important;
    visibility: hidden !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    z-index: auto !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.top-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.widget-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
}

.widget-row:last-child {
    margin-bottom: 0;
}

.widget-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.widget-icon {
    font-size: 0.8rem;
    min-width: 16px;
    text-align: center;
}

.clock-display {
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.5px;
}

.weather-display {
    font-weight: 500;
    color: #87CEEB;
}

.weather-temp {
    color: #000000;
    font-weight: 600;
}

.location-display {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .top-widget {
        top: 68px; /* A bit higher on mobile */
        right: 0; /* Extend to right edge */
        left: 0; /* Start from the very beginning - full width */
        padding: 3px 8px;
        font-size: 0.65rem;
        height: 28px; /* Shorter on mobile */
    }
    
    .widget-content {
        gap: 8px;
    }
    
    .widget-icon {
        font-size: 0.7rem;
        min-width: 12px;
    }
    
    .location-display {
        font-size: 0.55rem;
    }
}

@media (max-width: 480px) {
    .top-widget {
        top: 70px; /* A bit higher on small phones */
        right: 0; /* Extend to right edge */
        left: 0; /* Start from the very beginning - full width */
        padding: 2px 6px;
        font-size: 0.6rem;
        height: 24px; /* Very compact on small screens */
    }
    
    .widget-content {
        gap: 6px;
    }
    
    .location-display {
        display: none; /* Hide location on very small screens */
    }
}

/* ============================================================
   COMPREHENSIVE MOBILE FIXES
   Covers: nav, hero, beats grid, footer, overflow, audio
   ============================================================ */

/* --- Prevent horizontal scroll on ALL screen sizes --- */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* --- Mobile Navigation: dark theme (replaces white panel) --- */
@media (max-width: 768px) {
    .nav-menu {
        background: rgba(0, 0, 0, 0.97) !important;
        border-right: none;
    }

    .nav-link {
        color: #ffffff !important;
        font-size: 1.1rem;
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-link:hover {
        color: #FFD700 !important;
    }

    .nav-link.active {
        color: #FFD700 !important;
    }

    .nav-toggle span {
        background: #000000;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
    }

    /* Prevent sections overflowing viewport */
    .hero,
    .services-hero,
    .beats-hero,
    .beats-section,
    .footer {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* Hero title: never overflow the screen */
    .hero-title,
    .services-hero-title {
        word-break: break-word;
        font-size: 2.2rem;
    }

    /* Beats audio controls: always fit within card */
    .beat-preview {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Beats contact button: full width on mobile */
    .beats-contact-btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    /* Footer links: wrap tightly on mobile */
    .footer-links {
        flex-wrap: wrap;
        gap: 0.6rem;
        justify-content: center;
        padding: 0 0.5rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    /* Remove border-radius on hero sections that causes gaps */
    .hero {
        border-radius: 0 !important;
        margin: 0 !important;
    }

    /* Live banner: full width, no horizontal bleed */
    .live-banner,
    .youtube-release-banner {
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-live-section,
    .youtube-release-section {
        padding: 0 10px;
        box-sizing: border-box;
    }

    /* Services hero content: comfortable mobile padding */
    .services-hero-content {
        padding: 30px 16px !important;
    }

    /* Original Beats title needs extra clearance under fixed header on mobile */
    .beats-page .beats-hero,
    .zavier-page .beats-hero {
        padding-top: 150px !important;
    }

    .beats-page .services-hero-content,
    .zavier-page .services-hero-content {
        padding-top: 42px !important;
    }

    /* Beat cards: full-width on small tablets too */
    .beats-grid {
        grid-template-columns: 1fr;
    }

    /* Merch product images: fill card width naturally */
    .beat-cover {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
}

/* --- Extra small phones (≤ 480px) --- */
@media (max-width: 480px) {
    /* Nav logo text: shrink so it doesn't push hamburger off-screen */
    .nav-logo .brand-text {
        font-size: 1.4rem !important;
    }

    .nav-logo .brand-text .z-red,
    .nav-logo .brand-text .seven-blue {
        font-size: 1.4rem !important;
    }

    .logo-image {
        height: 32px !important;
    }

    /* Hero titles */
    .hero-title {
        font-size: 1.8rem !important;
    }

    .services-hero-title {
        font-size: 1.6rem !important;
    }

    /* Hero subtitle */
    .services-hero-subtitle {
        font-size: 0.7rem !important;
    }

    /* Footer links: even smaller on very narrow phones */
    .footer-links a {
        font-size: 0.75rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
        text-align: center;
    }

    /* Contact button on beats/merch page */
    .beats-contact-btn,
    .beat-cta {
        font-size: 0.8rem;
        padding: 0.6rem 0.5rem;
    }

    /* Slogan text: smaller so it fits one line */
    .hero-slogan {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }

    /* Spinning logo: slightly smaller on tiny screens */
    .hero-slogan-logo-img {
        width: 100px !important;
        height: 100px !important;
    }

    /* Container side padding */
    .container {
        padding: 0 12px;
    }

    /* Highlight items in services hero: stack vertically */
    .services-hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .services-hero-content {
        overflow-wrap: anywhere;
    }

    .beats-page .beats-hero,
    .zavier-page .beats-hero {
        padding-top: 165px !important;
    }

    .beats-page .services-hero-content,
    .zavier-page .services-hero-content {
        padding-top: 48px !important;
    }

    .highlight-item {
        width: 100%;
        max-width: 280px;
        box-sizing: border-box;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    /* Social links: stack on very small screens */
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    /* Live banner text: prevent overflow */
    .live-title,
    .live-text,
    .countdown-timer {
        font-size: 0.85rem;
        word-break: break-word;
    }

    /* Iframe: ensure proper sizing */
    .portfolio-video iframe,
    .tv-embed-frame iframe {
        min-height: 180px;
        width: 100%;
    }
}
}