/* Header-specific styles */

/* Navigation active link styles */
.nav-link.active {
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
    border-radius: 5px;
}

/* Tryouts ad section */
.tryouts-ad-section {
    max-width: 700px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.modern-dark-ad {
    background: linear-gradient(120deg, #171924 85%, #1d1228 100%);
    border-radius: 1.8rem;
    border: 1.5px solid #32234e;
    box-shadow: 0 12px 24px 0 rgba(50,20,70,0.16), 0 1.5px 18px 0 rgba(220,40,60,0.07);
}

.modern-ad-glow {
    position: absolute;
    z-index: 0;
    left: -10%;
    top: -18%;
    width: 120%;
    height: 170px;
    pointer-events: none;
    filter: blur(38px);
    opacity: 0.75;
    background: linear-gradient(90deg, rgba(220,40,60,0.18) 10%, rgba(255,100,80,0.12) 55%,rgba(80,40,100,0.18) 90%);
}

.ad-icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1a1622 55%, #d82a3c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 10px;
    border: 2.5px solid #d82a3c;
    box-shadow: 0 0 18px 2px #d82a3c33, 0 8px 20px #0005;
    color: #feebeb;
    animation: pulseIcon 2.6s infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        box-shadow: 0 0 18px 2px #d82a3c33, 0 8px 20px #0005;
    }
    40% {
        box-shadow: 0 0 34px 6px #d82a3c51, 0 8px 26px #0007;
    }
    60% {
        box-shadow: 0 0 20px 4px #ffb5a16c, 0 8px 20px #0007;
    }
}

.gradient-text {
    background: linear-gradient(90deg,#ee1451 0%, #fc731e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-underline {
    border-bottom: 2px solid #e63b3b66;
    padding-bottom: 1.5px;
}

.text-gradient-danger {
    background: linear-gradient(80deg,#fe2046,#fc731e 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-cta-btn {
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 20px -4px #d82a3c44, 0 8px 22px #0003;
    position: relative;
    overflow: hidden;
}

.modern-cta-btn .animated-arrow {
    display: inline-block;
    transition: transform 0.22s cubic-bezier(0.49,1.52,0.56,1);
}

.modern-cta-btn:hover .animated-arrow {
    transform: translateX(9px) scale(1.14) rotate(3deg);
}

.pulse-badge {
    animation: badgePulse 1.7s infinite alternate cubic-bezier(.81,-0.02,.51,.98);
    box-shadow: 0 0 10px #ed4858d9, 0 0 2px #fff;
    font-weight: 700;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 18px #ed485832;
    }
    100% {
        box-shadow: 0 0 25px #d82a3cd8;
    }
}

/* Tryouts ad text styles */
.tryouts-ad-title {
    color: #fff;
    letter-spacing: 1px;
    font-size: 2.2rem;
    text-shadow: 0 3px 14px rgba(220,40,60,0.18);
}

.tryouts-ad-lead {
    color: #e0e0e0;
}

.tryouts-ad-highlight {
    color: #f25;
}

.tryouts-ad-info {
    font-size: 1em;
    color: #bbb;
}

.tryouts-ad-info span {
    opacity: 0.95;
}

@media (max-width: 550px) {
    .modern-dark-ad {
        padding: 1.7rem 0.8rem !important;
    }
    .modern-dark-ad .p-5 {
        padding: 1.2rem 0.4rem !important;
    }
    .ad-icon-wrapper {
        width: 38px;
        height: 38px;
        font-size: 1.38rem;
    }
    .modern-cta-btn {
        font-size: 1.08em;
        padding-left: 1.8em;
        padding-right: 1.8em;
    }
    .tryouts-ad-title {
        font-size: 1.4rem !important;
    }
}

/* Hero banner styles */
.hero-banner {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.hero-title {
    background: linear-gradient(45deg, #8B0000 30%, #DC143C 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-motto {
    letter-spacing: 1px;
}

/* Button hover effects */
.hover-scale {
    transition: transform 0.2s;
}

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

/* Floating shop button */
.floating-shop-btn {
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.1);
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.pulsate {
    animation: pulsate 2s infinite;
}

