/* ====================================
   ZIKA - COMPETITION DETAIL PAGE - MODERN DESIGN
   ==================================== */

/* Page principale */
.comp-detail-page-modern {
    min-height: 100vh;
    background: var(--zika-bg);
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.comp-detail-hero-modern {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: heroSlideIn 0.8s ease-out;
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.comp-detail-hero-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.comp-detail-hero-content-modern {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Bouton retour */
.comp-detail-back-btn-modern {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.comp-detail-back-btn-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

.comp-detail-back-btn-modern i {
    font-size: 1rem;
}

/* Hero main content */
.comp-detail-hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo wrapper */
.comp-detail-logo-wrapper-modern {
    width: 150px;
    height: 150px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.6s ease-out 0.4s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.comp-detail-logo-modern {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

/* Status badge */
.comp-detail-status-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: bounceIn 0.6s ease-out 0.6s both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.comp-detail-status-icon {
    font-size: 1.2rem;
}

.comp-detail-status-text {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Title */
.comp-detail-title-modern {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Récompenses dans le hero */
.comp-detail-hero-prizes {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: #FFD700;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.comp-detail-hero-prizes i {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

/* Barre de navigation sous le hero */
.comp-detail-hero-nav {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    max-width: 1200px;
    margin: 0 auto;
}

.comp-detail-hero-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
    overflow: hidden;
}

.comp-detail-hero-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.comp-detail-hero-nav-item:hover::before {
    left: 100%;
}

.comp-detail-hero-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--zika-green);
    color: var(--zika-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.2);
}

.comp-detail-hero-nav-item i {
    font-size: 1.1rem;
    color: var(--zika-green);
    transition: all 0.3s ease;
}

.comp-detail-hero-nav-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.6));
}

.comp-detail-hero-nav-item span {
    font-size: 0.9rem;
    text-align: center;
}

/* Badge statut en haut à gauche */
.comp-detail-status-top-left {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

/* Logo en haut à droite */
.comp-detail-logo-top-right {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.comp-detail-logo-hero {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.comp-detail-logo-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 255, 0, 0.3);
    border-color: var(--zika-green);
}

/* Bouton Préinscription */
.comp-detail-preinscription-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comp-detail-preinscription-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 165, 0, 0.6);
    background: linear-gradient(135deg, #FF8C00 0%, #FF7F00 100%);
}

.comp-detail-preinscription-btn i {
    font-size: 1.1em;
}

/* Créateur */
.comp-detail-creator-modern {
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    display: flex;
    width: 100%;
}

.comp-detail-creator-centered {
    justify-content: center;
}

.comp-detail-creator-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.comp-detail-creator-info[onclick] {
    cursor: pointer;
}

.comp-detail-creator-center {
    justify-content: center;
}

.comp-detail-creator-right {
    flex-direction: row-reverse;
}

.comp-detail-creator-info:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.comp-detail-creator-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: block;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
}

.comp-detail-creator-photo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.comp-detail-creator-photo-placeholder i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.comp-detail-creator-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.comp-detail-creator-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comp-detail-creator-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

/* Contenu principal */
.comp-detail-content-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.comp-detail-layout-modern {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.comp-detail-main-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comp-detail-sidebar-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 2rem;
    height: fit-content;
}

/* Logo dans la card */
.comp-detail-logo-in-card {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.comp-detail-logo-card {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    padding: 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(0, 255, 0, 0.15) inset,
                0 0 30px rgba(0, 255, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.comp-detail-logo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.comp-detail-logo-card:hover::before {
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.comp-detail-logo-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 255, 0, 0.25), 
                0 0 0 2px rgba(0, 255, 0, 0.4) inset,
                0 0 50px rgba(0, 255, 0, 0.2);
    border-color: rgba(0, 255, 0, 0.4);
}

/* Cards */
.comp-detail-card-modern {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.comp-detail-card-animate {
    animation: fadeInUp 0.6s ease-out both;
}

.comp-detail-card-animate:nth-child(1) { animation-delay: 0.1s; }
.comp-detail-card-animate:nth-child(2) { animation-delay: 0.2s; }
.comp-detail-card-animate:nth-child(3) { animation-delay: 0.3s; }
.comp-detail-card-animate:nth-child(4) { animation-delay: 0.4s; }

.comp-detail-card-modern:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.comp-detail-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-detail-card-icon {
    font-size: 1.5rem;
    color: var(--zika-green);
}

.comp-detail-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Description */
.comp-detail-description-modern {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Récompenses */
.comp-detail-prizes-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comp-detail-prize-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    color: var(--olympe-accent);
    font-size: 1.05rem;
    font-weight: 600;
}

.comp-detail-prize-item i {
    font-size: 1.5rem;
}

/* Dates */
.comp-detail-dates-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comp-detail-date-item-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.comp-detail-date-item-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.comp-detail-date-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--zika-green) 0%, rgba(0, 255, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zika-bg);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.comp-detail-date-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.comp-detail-date-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comp-detail-date-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.comp-detail-date-separator {
    display: flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.25rem;
    margin: -0.5rem 0;
}

/* Règles */
.comp-detail-rules-modern {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    white-space: pre-wrap;
}

/* Actions card */
.comp-detail-actions-card-modern {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
}

.comp-detail-actions-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-detail-actions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Boutons d'action */
.comp-detail-action-btn-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.comp-detail-action-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.comp-detail-action-btn-modern:hover::before {
    left: 100%;
}

.comp-detail-action-btn-modern i:first-child {
    font-size: 1.25rem;
}

.comp-detail-action-btn-modern span {
    flex: 1;
    text-align: left;
}

.comp-detail-action-arrow {
    font-size: 0.9rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.comp-detail-action-btn-modern:hover .comp-detail-action-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.comp-detail-action-primary-modern {
    background: linear-gradient(135deg, var(--zika-green) 0%, rgba(0, 255, 0, 0.7) 100%);
    color: var(--zika-bg);
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.3);
}

.comp-detail-action-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 0, 0.4);
}

.comp-detail-action-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.comp-detail-action-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.comp-detail-action-outline-modern {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.comp-detail-action-outline-modern:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Info box */
.comp-detail-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
}

.comp-detail-info-box i {
    font-size: 1.25rem;
    color: #667eea;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.comp-detail-info-box p {
    margin: 0;
}

/* Social */
.comp-detail-social-modern {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-detail-social-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1rem 0;
}

.comp-detail-social-links {
    display: flex;
    gap: 0.75rem;
}

.comp-detail-social-links .comp-social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comp-detail-social-links .comp-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Bouton retour my-competitions */
.my-comp-back-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.my-comp-back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.my-comp-page-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 968px) {
    .comp-detail-layout-modern {
        grid-template-columns: 1fr;
    }
    
    .comp-detail-sidebar-modern {
        position: static;
    }
    
    .comp-detail-hero-modern {
        min-height: 400px;
    }
    
    .comp-detail-title-modern {
        font-size: 2.5rem;
    }
    
    .comp-detail-logo-wrapper-modern {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 640px) {
    .comp-detail-hero-modern {
        min-height: 350px;
    }
    
    .comp-detail-hero-content-modern {
        padding: 1.5rem 1rem;
    }
    
    .comp-detail-content-modern {
        padding: 2rem 1rem;
    }
    
    .comp-detail-card-modern {
        padding: 1.5rem;
    }
    
    .comp-detail-title-modern {
        font-size: 2rem;
    }
    
    .comp-detail-logo-wrapper-modern {
        width: 100px;
        height: 100px;
    }
    
    .comp-detail-date-item-modern {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .comp-detail-date-separator {
        transform: rotate(90deg);
    }
    
    .my-comp-page-header {
        flex-direction: column;
    }
    
    .my-comp-back-btn {
        align-self: flex-start;
    }
    
    .comp-detail-hero-nav {
        gap: 0.75rem;
        padding: 1rem 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .comp-detail-hero-nav-item {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        flex-shrink: 0;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .comp-detail-hero-nav-item i {
        font-size: 1rem;
    }
    
    .comp-detail-hero-nav-item span {
        font-size: 0.8rem;
    }
}

