/* ==========================================================================
   ADVERTISING EXPERT - Ultra High-End Custom Styles & Mobile Responsiveness
   ========================================================================== */

@layer utilities {
    .text-glow {
        text-shadow: 0 0 20px rgba(0, 255, 102, 0.6);
    }
    .box-glow {
        box-shadow: 0 0 30px rgba(0, 255, 102, 0.4);
    }
}

/* Typography Word Break Safeguards for Mobile Screens */
h1, h2, h3, h4, .font-heading {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

@media (max-width: 640px) {
    h1, h2 {
        letter-spacing: -0.5px !important;
    }
    .font-heading {
        line-height: 1.15 !important;
    }
}

/* Animated Border Glow */
@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(0, 255, 102, 0.8);
        box-shadow: 0 0 25px rgba(0, 255, 102, 0.4);
    }
    50% {
        border-color: rgba(125, 249, 255, 0.8);
        box-shadow: 0 0 45px rgba(125, 249, 255, 0.6);
    }
}

.animate-border-glow {
    animation: borderGlow 4s infinite ease-in-out;
}

/* Pricing Active Tab */
.pricing-tab-btn.active {
    background-color: #00FF66;
    color: #000000;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.5);
}

/* Glassmorphism Refraction Overlay */
.glass-reflection {
    position: relative;
    overflow: hidden;
}
.glass-reflection::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.06) 50%,
        transparent 55%
    );
    transform: rotate(30deg);
    transition: transform 0.8s ease;
    pointer-events: none;
}
.glass-reflection:hover::before {
    transform: translate(100%, 100%) rotate(30deg);
}

/* Infinite Marquee Animation for Partner Logos */
@keyframes marqueeLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

.animate-marquee-left {
    display: flex;
    width: max-content;
    animation: marqueeLeft 30s linear infinite;
}

.animate-marquee-left:hover {
    animation-play-state: paused;
}

.animate-marquee-right {
    display: flex;
    width: max-content;
    animation: marqueeRight 30s linear infinite;
}

.animate-marquee-right:hover {
    animation-play-state: paused;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #080A0E;
}
::-webkit-scrollbar-thumb {
    background: #1C2333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00FF66;
}
