
    /* EVENT INFO CONTAINER */
    .event-info-container {
        position: relative;
        width: 100%;
        padding: 3rem 0;
        background: linear-gradient(135deg, #e6056f, #ff9623);
        display: flex;
        justify-content: center;
    }

    .event-info-container::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url('https://yaticket.es/img/wallpaper1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.2;
        z-index: 0;
        pointer-events: none;
    }

    .event-info-container > * {
        position: relative;
        z-index: 3;
    }

    /* GRID */
    .event-grid {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        align-items: center;
    }

    /* POSTER */
    .poster-column {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .poster-image {
        width: 100%;
        max-width: 320px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: transform 0.3s ease;
    }

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

    .poster-placeholder {
        width: 100%;
        max-width: 320px;
        aspect-ratio: 3/4;
        background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }

    .poster-placeholder span {
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
        text-align: center;
    }

    /* INFO CARD */
    .info-column {
        display: flex;
        align-items: flex-start;
    }

    .info-card {
        color: white;
        padding: 1.5rem;
        width: 100%;
    }

    .event-info-container .event-title {
        font-size: 2rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 1rem;
        line-height: 1.3;
        text-transform: uppercase;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Títulos largos - Desktop */
    .event-info-container .event-title-long {
        font-size: 1.7rem;
        line-height: 1.25;
    }

    .event-description {
        display: block;
        color: #333333;
        font-size: 1.3rem;
        line-height: 1.6;
        text-align: center;
    }

    .discount-badge {
        display: block;
        text-align: center;
        background: #d1fae5;
        color: #065f46;
        padding: 0.5rem 1rem;
        font-weight: bold;
        font-size: 1.3rem;
        margin-top: 10px;
    }

    .divider {
        border: none;
        border-top: 1px solid #e5e7eb;
        margin: 1rem 0;
    }

    /* INFO LIST */
    .info-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: white;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .info-icon {
        flex-shrink: 0;
        margin-top: 0.1rem;
        font-size: 1.1rem;
        color: white;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .genre-container {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
        text-align: center;
    }

    .genre-badge {
        display: inline-block;
        background: #ede9fe;
        color: #6b21a8;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-weight: 500;
    }

    #txt-nomin {
        font-size: 16px;
    }

    /* MODAL */
    .image-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        animation: fadeIn 0.3s ease;
    }

    .image-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-content {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        border-radius: 8px;
        animation: zoomIn 0.3s ease;
    }

    .modal-close {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s ease;
        z-index: 10000;
    }

    .modal-close:hover {
        color: #e6056f;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes zoomIn {
        from { transform: scale(0.8); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }

    /* INFO NOTICE BOX */
    .info-notice-box {
        background: #111827;
        color: #f9fafb;
        padding: 20px 25px;
        border-radius: 16px;
        margin: 5px 0;
        display: flex;
        align-items: center;
        gap: 18px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }

    .info-notice-icon {
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.25);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
    }

    .info-notice-icon svg {
        width: 22px;
        height: 22px;
        stroke-width: 2.5;
    }

    .info-notice-text {
        flex: 1;
        font-size: 18px;
        line-height: 1.5;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    /* TABLET */
    @media (max-width: 1024px) {
        .event-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .poster-column {
            justify-content: center;
        }

        .event-info-container .event-title {
            font-size: 1.5rem;
            text-align: center;
        }

        .event-info-container .event-title-long {
            font-size: 1.3rem;
        }

        .event-description {
            font-size: 1rem;
        }
    }

    /* MÓVIL */
    @media (max-width: 768px) {
        .event-info-container {
            padding: 1rem 0;
        }

        .event-info-container::before {
            opacity: 0.1 !important;
        }

        .event-grid {
            grid-template-columns: 40% 60%;
            gap: 0.75rem;
            padding: 0 0.75rem;
            align-items: center;
        }

        .poster-column {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .poster-image {
            max-width: 100%;
            height: auto;
            border-radius: 6px;
        }

        .poster-placeholder {
            max-width: 100%;
            padding: 1rem;
        }

        .poster-placeholder span {
            font-size: 0.75rem;
        }

        .info-column {
            display: flex;
            align-items: flex-start;
        }

        .info-card {
            padding: 8px;
            width: 100%;
        }

        .event-info-container .event-title {
            font-size: 0.85rem;
            margin-bottom: 0.4rem;
            word-break: break-word;
            line-height: 1.15;
        }

        .event-info-container .event-title-long {
            font-size: 0.75rem;
            line-height: 1.1;
        }

        .event-description {
            font-size: 0.85rem;
        }

        .discount-badge {
            padding: 0.3rem 0.6rem;
            font-size: 1rem;
        }

        .divider {
            margin: 0.5rem 0;
        }

        .info-list {
            gap: 0.5rem;
        }

        .info-item {
            font-size: 0.75rem;
            gap: 0.4rem;
            line-height: 1.3;
        }

        .info-icon {
            font-size: 0.85rem;
            width: 22px;
            height: 22px;
        }

        .genre-container {
            margin-top: 0.6rem;
            padding-top: 0.6rem;
        }

        .genre-badge {
            padding: 0.25rem 0.5rem;
            font-size: 0.7rem;
        }

        #txt-nomin {
            font-size: 7px;
        }

        .modal-close {
            top: 10px;
            right: 15px;
            font-size: 35px;
        }

        .info-notice-box {
            padding: 16px 20px;
            gap: 14px;
            border-radius: 12px;
        }
        
        .info-notice-icon {
            width: 36px;
            height: 36px;
        }
        
        .info-notice-icon svg {
            width: 18px;
            height: 18px;
        }
        
        .info-notice-text {
            font-size: 14px;
            letter-spacing: 0.3px;
        }
    }

    /* MÓVIL PEQUEÑO */
    @media (max-width: 480px) {
        .event-grid {
            grid-template-columns: 35% 65%;
            gap: 0.5rem;
            padding: 0 0.5rem;
        }

        .info-card {
            padding: 6px;
        }

        .event-info-container .event-title {
            font-size: 0.8rem;
        }

        .event-info-container .event-title-long {
            font-size: 0.7rem;
            line-height: 1.05;
        }

        .event-description {
            font-size: 0.75rem;
        }

        .info-item {
            font-size: 0.7rem;
        }

        .info-icon {
            font-size: 0.8rem;
            width: 20px;
            height: 20px;
        }

        .discount-badge {
            font-size: 1rem;
        }

        .genre-badge {
            font-size: 0.65rem;
        }
    }
