/* Slogan Styles */
.slogan-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 1rem;
}

.slogan {
    font-size: 0.9rem;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: inline-block;
    padding: 8px 16px;
    margin: 0;
    /* Override previous margin */
}

.divider {
    width: 2px;
    height: 20px;
    background-color: #fff;
    transform: rotate(15deg);
}

/* Marquee Decoration */
.marquee-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    background: #fff;
    color: #000;
    padding: 8px 0;
    margin-top: 2rem;
    margin-bottom: -1rem;
    /* Pull links up slightly */
    transform: rotate(-2deg);
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 0;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    padding-right: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Adjust Profile Section to accommodate marquee */
.profile-section {
    margin-bottom: 4.5rem;
    border-bottom: none;
    /* Remove simple border, use marquee instead */
    padding-bottom: 0;
    overflow: visible;
    /* Allow marquee to extend */
}

/* Add a subtle glow to main text */
.streetwear-text {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.outline-text {
    /* Make outline glow slightly */
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
}