.hero-section {
    background-color: #050505;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(239, 203, 108, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-pitch-bg {
    --glow-x: 75%;
    --glow-y: 50%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(0, 0, 0, 0) 0%, #050505 90%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23ffffff' fill='none' stroke-width='4'%3E%3Crect x='50' y='50' width='900' height='500'/%3E%3Cline x1='500' y1='50' x2='500' y2='550'/%3E%3Ccircle cx='500' cy='300' r='90'/%3E%3Ccircle cx='500' cy='300' r='5' fill='%23ffffff'/%3E%3Crect x='50' y='140' width='160' height='320'/%3E%3Crect x='790' y='140' width='160' height='320'/%3E%3Crect x='50' y='220' width='60' height='160'/%3E%3Crect x='890' y='220' width='60' height='160'/%3E%3Cpath d='M 210 230 A 70 70 0 0 1 210 370'/%3E%3Cpath d='M 790 230 A 70 70 0 0 0 790 370'/%3E%3C/g%3E%3C/svg%3E");
    background-position: 85% center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 991px) {
    .hero-pitch-bg {
        --glow-x: 50%;
        background-position: center;
    }
}

@media (max-width: 767px) {
    .hero-pitch-bg {
        --glow-y: 70%;
        background-position: center 70%;
        background-size: 150%;
    }
}

@media (orientation: portrait) {
    .hero-pitch-bg {
        --glow-x: 50%;
        --glow-y: 50%;
        background-image:
            radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(0, 0, 0, 0) 0%, #050505 90%),
            url("data:image/svg+xml,%3Csvg viewBox='0 0 600 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23ffffff' fill='none' stroke-width='4'%3E%3Crect x='50' y='50' width='500' height='900'/%3E%3Cline x1='50' y1='500' x2='550' y2='500'/%3E%3Ccircle cx='300' cy='500' r='90'/%3E%3Ccircle cx='300' cy='500' r='5' fill='%23ffffff'/%3E%3Crect x='150' y='50' width='300' height='160'/%3E%3Crect x='150' y='790' width='300' height='160'/%3E%3Crect x='220' y='50' width='160' height='60'/%3E%3Crect x='220' y='890' width='160' height='60'/%3E%3Cpath d='M 230 210 A 70 70 0 0 0 370 210'/%3E%3Cpath d='M 230 790 A 70 70 0 0 1 370 790'/%3E%3C/g%3E%3C/svg%3E");
        background-size: cover;
        background-position: center;
    }
}

.hero-glow {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 203, 108, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.premium-card {
    background: rgba(255, 255, 255, 1);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(239, 203, 108, 0.15);
    border-color: var(--laef-accent);
}

.badge-gold-soft {
    background: rgba(239, 203, 108, 0.15);
    color: #a07800;
    border: 1px solid rgba(239, 203, 108, 0.4);
    letter-spacing: 1px;
}

.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 203, 108, 0.1);
    color: var(--laef-gold);
    font-size: 1.6rem;
    transition: all 0.4s ease;
}

.premium-card:hover .icon-box {
    background: var(--laef-gold);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(239, 203, 108, 0.4);
}

.tournament-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(239, 203, 108, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tournament-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: all 0.6s ease;
}

.tournament-widget:hover::before {
    left: 100%;
}

.tournament-widget:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--laef-accent);
    box-shadow: 0 10px 40px rgba(239, 203, 108, 0.2);
    transform: translateY(-5px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--laef-gold) 0%, var(--laef-accent) 100%);
    color: black;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(239, 203, 108, 0.3);
}

.btn-gold:hover {
    box-shadow: 0 10px 25px rgba(239, 203, 108, 0.5);
    transform: translateY(-3px);
    color: black;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold-gradient {
    background: linear-gradient(135deg, var(--laef-gold) 0%, var(--laef-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ig-section {
    padding: 0 0.5rem;
}

.ig-handle {
    color: var(--laef-accent);
    font-weight: 600;
    letter-spacing: .5px;
    transition: opacity .2s;
}

.ig-handle:hover {
    opacity: .75;
}

.ig-scroll-track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.ig-scroll-track::-webkit-scrollbar {
    display: none;
}

.ig-scroll-inner {
    display: flex;
    gap: 12px;
    padding: 10px;
    width: max-content;
}

.ig-card {
    position: relative;
    width: 320px;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
    text-decoration: none;
    scroll-snap-align: start;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    transition: transform .3s cubic-bezier(.175, .885, .32, 1.275), box-shadow .3s;
}

.ig-card:hover {
    transform: scale(1.02);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .15);
}

.ig-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #bbb;
    font-size: 2rem;
}

.ig-placeholder span {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ccc;
}

/* Imagen real (cuando el usuario reemplaza el placeholder) */
.ig-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Hover overlay */
.ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s;
    border-radius: 16px;
}

.ig-card:hover .ig-overlay {
    opacity: 1;
}

.ig-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    gap: 4px;
}

@media (max-width: 576px) {
    .ig-card {
        width: 160px;
        height: 160px;
    }
}